Reputation: 31
I have been working for a few days, now, to convert from one image format to another, such as:
from jpg -> png cropping an image
and the convert the document as follows:
pdf->tiff
I have done all this using Imagemagick, which supports all these conversions. But there is no support for MS Word (Doc/Docx) in Imagemagick. Does any one know how could it be done with php, because I have been searching a lot. Can anyone guide me how to do that or point me to any link / source of learning, which could guide me through it. Regards, Aqib awan
Upvotes: 2
Views: 5066
Reputation: 23
It is possible to convert word document to image with php. You need to install PHPword to read the document files, then TCPDF to convert it to PDF , then Use Imagick to convert PDF to Image... It Works.
Upvotes: 2