Re: How to use 'convert' to change several from png to jpg?

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Tuna
Date:  
To: Main PLUG discussion list
Subject: Re: How to use 'convert' to change several from png to jpg?
On 08/09/2010 10:42 PM, wrote:
> I use the following script to convert a batch of images to a uniform width
> of 900 pixels. It works fine ... but how do I need to modify it to do the
> same task but also convert all the originals that are .png files to .jpg?
>
> mkdir 900
> find -type f -maxdepth 1 -print0 | xargs -r -0 -ixxx convert -resize 900
> -quality 90% xxx ./900/xxx
>
>

find -type f -maxdepth 1 -print0 | xargs -r -0 -ixxx convert -resize 900
-quality 90% xxx ./900/$(basename xxx .png).jpg

convert works by file extensions. I haven't tested this, so experiment with it
before destroying all your images. :P

>
> ---------------------------------------------------
> PLUG-discuss mailing list -
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>


---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss