Page 1 of 1

convert pdf

Posted: 2008-04-30T08:39:59-07:00
by jnimo
Hello.


thanks for reading my post, i have a question and i want to know if someone could help me

when I want to create a pdf document with convert i use the next command

convert *.jpg out.pdf

and with this command i put every jpg in one pdf, but if i have 120-150 jpg the computer just hang.

there is a way to solve that problem?

there is a way to append jpg to a pdf file that already exist?


thanks for reading my problem, THANKS a lot

Re: convert pdf

Posted: 2008-04-30T09:02:21-07:00
by magick
> but if i have 120-150 jpg the computer just hang.

Try this command:
  • convert -limit memory 1 -limit map 1 *.jpg out.pdf
Make sure you have plenty of free space in your temporary partition. If not, set the MAGICK_TMPDIR environment to a path that does have plenty of free space.

The convert command will run, albeit slowly, but it should not have a major impact on your system while its running.

Re: convert pdf

Posted: 2008-04-30T09:12:17-07:00
by jnimo
thanks, but there is a way to append a .jpg to a pdf file? that would help me too

thanks