Search found 2 matches

by jobjol
2012-08-12T09:50:55-07:00
Forum: Users
Topic: jpg to pdf - with original size
Replies: 6
Views: 65195

Re: jpg to pdf - with original size

Try this command.
ImageMagick doesn't work well alone, but in tandem with other apps it will do the trick.
Check the output and functionality of the command @ http://convertjpgpdf.net

convert -scale ".$HEIGHT."x".$WIDTH." -border ".$MARGIN."x".$MARGIN." -bordercolor white $inputfile $outputfile ...
by jobjol
2012-07-27T02:47:21-07:00
Forum: Users
Topic: PDF to JPG : images cropped without reason
Replies: 14
Views: 37282

Re: PDF to JPG : images cropped without reason

I use the following code that converts in high quality without any cropping:

convert -density 300x300 [input-pdf-file] -colorspace RGB -quality 90 [output-jpg-file]

So what are the changes? Maybe the density option fix this problem?

You can check the output quality of the command above @ http ...