Lanny Marcus
2009-May-07 12:57 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
I returned from Bogot? and have a Folder with 272 photos that total 419.9 MB. I would like to email them to several people who were there for the concerts I attended. I have Picasa, gThumb (not really an Editor but I believe it can reduce the quality of photos) and The GIMP installed. Is there a way I can have a photo editor reduce all of them to VGA size, without doing that 272 times? The people who will receive them are using M$ Windoze. Also, they are in a folder and it doesn't seem possible to attach a folder in gmail. A good way to zip them up in one file that can be unzipped on Windoze boxes? TIA! P.S. I met people there who participate in the forum for my favorite singer. I suspect it would be equally interesting, to meet many of the people who participate in this Mailing List.
Kwan Lowe
2009-May-07 13:04 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
On Thu, May 7, 2009 at 8:57 AM, Lanny Marcus <lmmailinglists at gmail.com> wrote:> I returned from Bogot? and have a Folder with 272 photos that total > 419.9 MB. I would like to email them to several people who were there > for the concerts I attended. I have Picasa, gThumb (not really an > Editor but I believe it can reduce the quality of photos) and The GIMP > installed. Is there a way I can have a photo editor reduce all of them > to VGA size, without doing that 272 times? The people who will receive > them ?are using M$ Windoze. ?Also, they are in a folder and it doesn't > seem possible to attach a folder in gmail. A good way to zip them up > in one file that can be unzipped on Windoze boxes? TIA!ImageMagick's "convert" utility can do that.. Don't have the syntax handy, but it's fairly trivial. Just work on a copy first :D>
Mogens Kjaer
2009-May-07 13:04 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
Lanny Marcus wrote:> A good way to zip them up > in one file that can be unzipped on Windoze boxes? TIA!Maybe something like: convert -resize 640x480 *.jpg concert.pdf Might require a lot of RAM... Mogens -- Mogens Kjaer, Carlsberg A/S, Computer Department Gamle Carlsberg Vej 10, DK-2500 Valby, Denmark Phone: +45 33 27 53 25, Mobile: +45 22 12 53 25 Email: mk at crc.dk Homepage: http://www.crc.dk
Jim Perrin
2009-May-07 13:05 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
On Thu, May 7, 2009 at 8:57 AM, Lanny Marcus <lmmailinglists at gmail.com> wrote:> I returned from Bogot? and have a Folder with 272 photos that total > 419.9 MB. I would like to email them to several people who were there > for the concerts I attended. I have Picasa, gThumb (not really an > Editor but I believe it can reduce the quality of photos) and The GIMP > installed. Is there a way I can have a photo editor reduce all of them > to VGA size, without doing that 272 times? The people who will receive > them ?are using M$ Windoze. ?Also, they are in a folder and it doesn't > seem possible to attach a folder in gmail. A good way to zip them up > in one file that can be unzipped on Windoze boxes? TIA!You can do this with ImageMagick's tools. mkdir shrunk for in in *.jpg ; do convert $i -resize 640x480 shrunk/$i ; done change 640x480 to whatever size you want. -- During times of universal deceit, telling the truth becomes a revolutionary act. George Orwell
Ralph Angenendt
2009-May-07 13:06 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
Lanny Marcus wrote:> Is there a way I can have a photo editor reduce all of them > to VGA size, without doing that 272 times?Use convert from the ImageMagick package (convert -resize).> The people who will receive them are using M$ Windoze. Also, they > are in a folder and it doesn't seem possible to attach a folder in > gmail. A good way to zip them up in one file that can be unzipped on > Windoze boxes?yum install zip (if it isn't installed already). Ralph -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://lists.centos.org/pipermail/centos/attachments/20090507/33644970/attachment-0004.sig>
Les Mikesell
2009-May-07 13:08 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
Lanny Marcus wrote:> I returned from Bogot? and have a Folder with 272 photos that total > 419.9 MB. I would like to email them to several people who were there > for the concerts I attended. I have Picasa, gThumb (not really an > Editor but I believe it can reduce the quality of photos) and The GIMP > installed. Is there a way I can have a photo editor reduce all of them > to VGA size, without doing that 272 times? The people who will receive > them are using M$ Windoze. Also, they are in a folder and it doesn't > seem possible to attach a folder in gmail. A good way to zip them up > in one file that can be unzipped on Windoze boxes? TIA! > > P.S. > I met people there who participate in the forum for my favorite > singer. I suspect it would be equally interesting, to meet many of the > people who participate in this Mailing List.Why not upload to one of the online photo sharing sites like flikr or google's picasa web albums, send a link and let the recipients worry about whether or how to download copies? -- Les Mikesell lesmikesell at gmail.com
Steve Huff
2009-May-07 13:10 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
On May 7, 2009, at 8:57 AM, Lanny Marcus wrote:> I returned from Bogot? and have a Folder with 272 photos that total > 419.9 MB. I would like to email them to several people who were there > for the concerts I attended. I have Picasa, gThumb (not really an > Editor but I believe it can reduce the quality of photos) and The GIMP > installed. Is there a way I can have a photo editor reduce all of them > to VGA size, without doing that 272 times? The people who will receive > them are using M$ Windoze. Also, they are in a folder and it doesn't > seem possible to attach a folder in gmail. A good way to zip them up > in one file that can be unzipped on Windoze boxes? TIA!http://www.imagemagick.org/Usage/ the ImageMagick tool you probably want to use is called 'convert'. as for compressing the folder of images, `yum install zip; man zip`. -steve -- If this were played upon a stage now, I could condemn it as an improbable fiction. - Fabian, Twelfth Night, III,v http://five.sentenc.es -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2209 bytes Desc: not available URL: <http://lists.centos.org/pipermail/centos/attachments/20090507/08440d15/attachment-0004.p7s>
John R Pierce
2009-May-07 18:16 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
Lanny Marcus wrote:> I returned from Bogot? and have a Folder with 272 photos that total > 419.9 MB. I would like to email them to several people who were there > for the concerts I attended. I have Picasa, gThumb (not really an > Editor but I believe it can reduce the quality of photos) and The GIMP > installed. Is there a way I can have a photo editor reduce all of them > to VGA size, without doing that 272 times? The people who will receive > them are using M$ Windoze. Also, they are in a folder and it doesn't > seem possible to attach a folder in gmail. A good way to zip them up > in one file that can be unzipped on Windoze boxes? TIA! >why not post them on a website like picasaweb.google.com (since you mentioned picasa) and then just email the URL ? picasaweb will autoscale them to a variety of sizes and show them to the user sized to his screen. for instance, my pictures of an astronomy campout I went to last fall... http://picasaweb.google.com/jhn.pierce/CalStar08
Lanny Marcus
2009-May-07 23:25 UTC
[CentOS] OT: Photo Editor to reduce 272 photos to VGA at once
On Thu, May 7, 2009 at 7:57 AM, Lanny Marcus <lmmailinglists at gmail.com> wrote:> I returned from Bogot? and have a Folder with 272 photos that total > 419.9 MB. I would like to email them to several people who were there > for the concerts I attended. I have Picasa, gThumb (not really an > Editor but I believe it can reduce the quality of photos) and The GIMP > installed. Is there a way I can have a photo editor reduce all of them > to VGA size, without doing that 272 times? The people who will receive > them ?are using M$ Windoze. ?Also, they are in a folder and it doesn't > seem possible to attach a folder in gmail. A good way to zip them up > in one file that can be unzipped on Windoze boxes? TIA!<snip> Thank you, to everyone who responded and for all of the ideas! ImageMagick seems to be one way to go. Posting them to Picasa online, the other way. I agree that emailing them to everyone wastes a lot of bandwidth. I must make them available to the Webmaster of the official web site and one of the chorus singers (a serious amateur photographer) has a blog and he wants them. And now I have people who participate in the forum who want them to. If I can get them posted on Picasa for free and they can download any of them they like, that's the best way probably and the easiest for me. I was standing about one meter from the stage, so I have some very good photos, along with some bad ones. Thanks again! I will check out how to get them uploaded to Google's Picasa, since I have Picasa installed.
Possibly Parallel Threads
- {SOLVED} Re: OT: Photo Editor to reduce 272 photos to VGA at once
- Picasa vs. native photo management apps
- Google Picasa / GNOME / how to launch application?
- Installing Google's Picasa for Linux on CentOS 5
- {SOLVED} Re: Google Picasa / GNOME / how to launch application?