Search found 2 matches

by eyalb
2011-10-16T14:22:25-07:00
Forum: Users
Topic: convert first page of pdf to jpg
Replies: 1
Views: 3898

Re: convert first page of pdf to jpg

i found the answer

FOR /R C:\Directory %F in (*.*) do convert -trim %~nFxF[0] %~nFxF.jpg
by eyalb
2011-10-16T13:23:20-07:00
Forum: Users
Topic: convert first page of pdf to jpg
Replies: 1
Views: 3898

convert first page of pdf to jpg

i have some pdf files and i want to convert first page into jpg i use convert -trim c:\temp\2011-10-16.pdf[0] c:\temp\2011-10-16.jpg and it's work fine now i want to do it for all the pdf in a directory or in a txt file i tried convert -trim c:\temp\@1.txt c:\temp\1.jpg but it's not working edited ...