CodeIgniter Forums
COnvert PDF file to JPG file - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: COnvert PDF file to JPG file (/showthread.php?tid=60197)



COnvert PDF file to JPG file - El Forum - 02-04-2014

[eluser]rash[/eluser]
Hello all,

I am trying to convert pdf file to jpg file at the time of file upload.
can anyone help me for this that how i can do...


Thanks in advance


COnvert PDF file to JPG file - El Forum - 02-04-2014

[eluser]noideawhattotypehere[/eluser]
There is like 1000000000 guides when you enter 'php pdf to jpg' in google... Use it, wont hurt


COnvert PDF file to JPG file - El Forum - 02-04-2014

[eluser]rash[/eluser]
Hello noideawhattotypehere

I already serched in google and there is also an imagick library which do this better.
But my problem is that how can i use imagick in my project, i don't understand it. so, if there is some example that previously used by anyone then it should help me.

and thanks for your response, but always firstly i search in google and after that in this blog.

Thanks


COnvert PDF file to JPG file - El Forum - 02-05-2014

[eluser]jonez[/eluser]
The image library supports ImageMagick if you have it installed on your server: http://ellislab.com/codeigniter/user-guide/libraries/image_lib.html

Code:
$config = array(
    'image_library' => 'imagemagick',
    'library_path' => 'imagemagick_file_path_goes_here',
    'source_image' => $pdf_path,
    'new_image' => $img_path,
    'maintain_ratio' => true,
    'width' => 365,
    'quality' => '100%',
   );

   $this->image_lib->initialize( $config );

   if ( $this->image_lib->resize( ) ) {
    $this->image_lib->clear( );
   }



COnvert PDF file to JPG file - El Forum - 02-05-2014

[eluser]rash[/eluser]
Hello PM jonez

Thanks for the reply and the link.

But there is doubt i.e. where i am write the code?? in controller?? and in module i write the code for dtaabase inset?? is it the correct process??

Kindly reply for this...i am now just coded in normal mvc and learning about codeigniter mvc.

Thanks




COnvert PDF file to JPG file - El Forum - 02-07-2014

[eluser]jonez[/eluser]
You can put it anywhere. The code I pasted was used in a library since multiple controllers call it. If you don't need the code shared between controllers you can put it in the one controller you need. Or if the thumbnail is part of a single object action you could put it in the model.


COnvert PDF file to JPG file - El Forum - 02-09-2014

[eluser]rash[/eluser]
Hello jonez

Thank you for the reply. I am trying to implement it.


COnvert PDF file to JPG file - El Forum - 03-16-2014

[eluser]Unknown[/eluser]
I used to convert PDF file to JPG image on my work with this PDF converter, works fairly well, hope it helps you.
http://www.pdftoworddoc.com/pdf-converter.html
Contact me if you have any other question.



COnvert PDF file to JPG file - El Forum - 09-17-2014

[eluser]Unknown[/eluser]
If you want to convert pdfs to jpeg you are best advised to use online services such as: pdfjpg.net. Simple upload your pdfs and download your newly converted jpegs.
Hope this helps Baki1492


COnvert PDF file to JPG file - El Forum - 10-01-2014

[eluser]Unknown[/eluser]
google does help Tongue
there are literally millions of sites that will do this, quick and easy
if you want more options such as page selection and rotation, http://online-pdf.org/ isnt too bad
if you dont trust any online sites, you can just use adobe's program Smile
regards