Hi,
Is it possible to covert the html code(Online url) to JPEG using Javascript(File Reader Object)?
Regards,
Dinesh
Hi,
Is it possible to covert the html code(Online url) to JPEG using Javascript(File Reader Object)?
Regards,
Dinesh
Javascript is client-side language, it doesn’t contain any image processing functions.
Is there is anyway using canvas element?
I got a javascript library for image processing function. Can you check this link and tell me your ideas.
This library fully developed using canvas element.
Excuse my ignorance, of course there is canvas :injured:
Function toDataURL() creates canvas image encoded with base64, so you would need to send it to PHP for decoding and saving. You could do that by POST through AJAX request.
FileReader is used for read-only (as name states), so actually you can’t use it I guess.