I'm used to convert JPEGs to PDFs using a very simple command like.
Code: Select all
convert Image.jpg File.pdf
I proceeded with the test below:
Code: Select all
convert -size 210x297 xc:green ./green.jpg
Code: Select all
convert -verbose ./green.jpg ./green.pdf
Code: Select all
./green.jpg JPEG 210x297 210x297+0+0 DirectClass 6.9e+02
I tried using the same commands but replacing the JPEG by TIFF files, all worked OK.
What can be done to solve the problem of JPEG -> PDF conversion?
Thank you very much. Help is much appreciated.