Difference between revisions of "Image magic manipulations"

From Eitan Burcat
Jump to navigation Jump to search
(Created page with "(fish shell format) for file in * convert -colorspace RGB $file -verbose -density 150 -quality 100 ../Plans2/(basename $file .pdf).jpg end")
 
Line 1: Line 1:
(fish shell format)
(fish shell format)
   for file in *
   for file in *
     convert -colorspace RGB $file -verbose -density 150 -quality 100 ../Plans2/(basename $file .pdf).jpg
     convert -colorspace RGB -density 150 $file -verbose -quality 100 ../Plans2/(basename $file .pdf).jpg
   end
   end

Revision as of 13:57, 20 July 2015

(fish shell format)

 for file in *
   convert -colorspace RGB -density 150 $file -verbose -quality 100 ../Plans2/(basename $file .pdf).jpg
 end