Home > Enterprise >  Convert HTML to image on Apple Watch?
Convert HTML to image on Apple Watch?

Time:08-24

I'm trying to get the HTML of a website, and display it as a picture. The conversion is very straightforward on iOS, but since watchOS doesn't have WKWebView (which all of the methods I've found uses) I can't use those solutions.

I've also explored doing it via an API, but they're either too costly or look suspicious (but please feel free to point me to one if you're aware of one!).

Is there any way to display HTML as an image on Apple Watch?

Thanks!

CodePudding user response:

You can deploy your own free microservice (i.e. with node.js heroku) and then make the http request to your service passing your url and getting back your image.

  • Related