I upload a pdf then convert it into base64 text/plain format and save that base64 text into database.Now I want to convert from base64 text/plain format to png/jpg format and display that image.Is there any solution for it?
Asked
Active
Viewed 88 times
0
-
you cannot simple convert a bas64 encoded pdf to an image without any conversion. You need to convert the base64 pdf back to a pdf and use other ways to create a image from it. Here is an exaple of the conversion: https://stackoverflow.com/questions/467793/how-do-i-convert-a-pdf-document-to-a-preview-image-in-php – FMK May 07 '19 at 08:48
-
Thank you. I'll give a try. – Ananya Kundu May 07 '19 at 08:52
-
Yes, write some code for that – Nico Haase May 07 '19 at 08:58