[gentoo-user] Image resize question..

2006-03-05 Thread Rohit Sharma
Apologies in advance for this quick question which isn't about Gentoo
per se, but is about work on Linux.
Is there a command [hint "man command" shall do] which I can use to
resize an image? I have 200 of them in a directory which I want to
resize to fit my cellphone.
-- Thanks, Rohit

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Image resize question..

2006-03-05 Thread John J. Foster
On Mon, Mar 06, 2006 at 12:07:32AM +, Rohit Sharma wrote:
> Apologies in advance for this quick question which isn't about Gentoo
> per se, but is about work on Linux.
> Is there a command [hint "man command" shall do] which I can use to
> resize an image? I have 200 of them in a directory which I want to
> resize to fit my cellphone.

I haven't used it for a couple years, but take a look at imagemagick.

festus

-- 
I contend we are both atheists, I just believe in one fewer gods than
you do. When you understand why you dismiss all the other possible gods, 
you will understand why I dismiss yours.
...Stephen F Roberts


pgppRgx9OitaG.pgp
Description: PGP signature


Re: [gentoo-user] Image resize question..

2006-03-05 Thread Alexander Skwar
Rohit Sharma wrote:


> Is there a command [hint "man command" shall do] which I can use to
> resize an image?

ImageMagick - convert

Alexander Skwar
-- 
HOW YOU CAN TELL THAT IT'S GOING TO BE A ROTTEN DAY:
#32: You call your answering service and they've never heard of you.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Image resize question.. : resolved

2006-03-05 Thread Rohit Sharma
Rohit Sharma wrote:

>Is there a command [hint "man command" shall do] which I can use to resize an 
>image? I have 200 of them in a directory which I want to
>resize to fit my cellphone.
>  
>
works as  in

find . -type f -maxdepth 1 -print0 | xargs -r -0 -ixxx convert -resize
200x147 xxx ./PPP/xxx.jpg

You have to create directory PPP beforehand and you execute this command
where PWD is your image collection directory.
-- 
gentoo-user@gentoo.org mailing list