>>From: Niklas Werner <[EMAIL PROTECTED]>
>>To: [EMAIL PROTECTED]
>>Subject: Re: Pictures
>>Date: Mon, 14 Jan 2002 10:23:07 +0100
>>
>>Am Montag 14 Januar 2002 10:01 schrieben Sie:
>>> Hi LyX users
>>>
>>> This may be a little bit off topic, but...
>>>
>>> What is the easiest way to convert all tiff files in a directory to
>>> eps?
>>>
>>> I have tried 'convert xxx.tif xxx.eps' for a single file but it changes
>>> the resolution to 72dpi :-(
>>>
>>> Thanks in advance.
>>>
>>
>>_READING_ the man-page gives you:
>>
>>-density <width>x<height>
>>              vertical and horizontal resolution in pixels of the
>>              image.
>>
>>just in case you want this for all (in sh):
>> for f in *.tiff; do
>>   convert -density 600x600 $f `basename $f tiff`.eps;
>> done

What about
mogrify -format eps -density 600x600 *.tiff

-- 
Jean-Pierre

Reply via email to