public inbox for cygwin-talk@cygwin.com
 help / color / mirror / Atom feed
* Winge about Windows no: XLS143556BJ
@ 2006-03-31  9:44 zzapper
  2006-03-31 10:14 ` Corinna Vinschen
  2006-03-31 10:35 ` George
  0 siblings, 2 replies; 6+ messages in thread
From: zzapper @ 2006-03-31  9:44 UTC (permalink / raw)
  To: cygwin-talk

Hi
I know it's a waste of electrons to grumble about Windows.
But I'm using an otherwise nice Windows Application Irfanview to manage 
some photos, except it seems to use that default Windows behaviour "I won't 
remember the last folder you were using" so you have to keep walkng to the 
correct directory.

Phew relieved my anguish, sorry about that.

But while I'm at it is there any cygwin CLI application which will resize a 
JPG?


-- 
http://successtheory.com/tips/ 100 FREE Success and Self-Improvement Tips

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Winge about Windows no: XLS143556BJ
  2006-03-31  9:44 Winge about Windows no: XLS143556BJ zzapper
@ 2006-03-31 10:14 ` Corinna Vinschen
  2006-03-31 10:35 ` George
  1 sibling, 0 replies; 6+ messages in thread
From: Corinna Vinschen @ 2006-03-31 10:14 UTC (permalink / raw)
  To: cygwin-talk

On Mar 31 09:43, zzapper wrote:
> Hi
> I know it's a waste of electrons to grumble about Windows.
> But I'm using an otherwise nice Windows Application Irfanview to manage 
> some photos, except it seems to use that default Windows behaviour "I won't 
> remember the last folder you were using" so you have to keep walkng to the 
> correct directory.

Hmm, I'm using IrfanView 3.80 and it remembers the last folder...

> But while I'm at it is there any cygwin CLI application which will resize a 
> JPG?

convert resp. mogrify from the ImageMagick package.


Corinna

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Winge about Windows no: XLS143556BJ
  2006-03-31  9:44 Winge about Windows no: XLS143556BJ zzapper
  2006-03-31 10:14 ` Corinna Vinschen
@ 2006-03-31 10:35 ` George
  2006-03-31 12:27   ` zzapper
  1 sibling, 1 reply; 6+ messages in thread
From: George @ 2006-03-31 10:35 UTC (permalink / raw)
  To: cygwin-talk

On Fri, Mar 31, 2006 at 09:43:43AM +0000, zzapper wrote:

> I know it's a waste of electrons to grumble about Windows.  But I'm
> using an otherwise nice Windows Application Irfanview to manage some
> photos, except it seems to use that default Windows behaviour "I won't
> remember the last folder you were using" so you have to keep walkng to
> the correct directory.

Despite its widespread use, Irfranview, IMHO, is the digital image
equivalent of Wordpad.  Things on a Mac are much better all round, but
on a Windows system, ACDSee is still the fastest viewer/browser (even
the really old versions work great).

Regrettably, on Linux systems, the choices are extensive but from what
I've seen, most are somewhere between slow and stupid.  Resorting to
writing PHP and viewing images in a browser window, I guess, works for
some. 

> But while I'm at it is there any cygwin CLI application which will
> resize a JPG?
 
Imagemagick is what you're looking for.

	convert foo.jpg -resize 96x96 bar.jpg

Arbitrarily selected self-help link:

	http://www-128.ibm.com/developerworks/library/l-graf/?ca=dnt-428

-- 
George

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Winge about Windows no: XLS143556BJ
  2006-03-31 10:35 ` George
@ 2006-03-31 12:27   ` zzapper
  2006-04-05  2:16     ` Joe Smith
  0 siblings, 1 reply; 6+ messages in thread
From: zzapper @ 2006-03-31 12:27 UTC (permalink / raw)
  To: cygwin-talk

George <d1945@sbcglobal.net> wrote in news:20060331103522.GA1376@home:

> Imagemagick is what you're looking for.
> 
>      convert foo.jpg -resize 96x96 bar.jpg
> 
> Arbitrarily selected self-help link:
> 
>      http://www-128.ibm.com/developerworks/library/l-graf/?ca=dnt-428

Hi merci tout le monde

What worked for me (fortunately I already had ImageMagick!)

>convert -sample 80x40 abbeyparkarch.gif s_abbeyparkarch.gif

>lsimg abbeyparkarch.gif s_abbeyparkarch.gif

(Cant remember where I got lsing.exe from)

(Yeah I was doing something odd in IrfanView, probably my fault, 
IrfanView has some really nice features)

-- 
http://successtheory.com/tips/ 100 FREE Success and Self-Improvement Tips

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Winge about Windows no: XLS143556BJ
  2006-03-31 12:27   ` zzapper
@ 2006-04-05  2:16     ` Joe Smith
  2006-04-26 13:32       ` zzapper
  0 siblings, 1 reply; 6+ messages in thread
From: Joe Smith @ 2006-04-05  2:16 UTC (permalink / raw)
  To: cygwin-talk


"zzapper" wrote in message 
news:Xns979788D103323zzappergmailcom@80.91.229.5...
> George <XXXXXX@sbcglobal.net.invalid> wrote in 
> news:20060331103522.GA1376@home:
                   ^^^^
>> Imagemagick is what you're looking for.
>>
>>      convert foo.jpg -resize 96x96 bar.jpg
>>
>> Arbitrarily selected self-help link:
>>
>>      http://www-128.ibm.com/developerworks/library/l-graf/?ca=dnt-428
>
> Hi merci tout le monde
>
> What worked for me (fortunately I already had ImageMagick!)
>
>>convert -sample 80x40 abbeyparkarch.gif s_abbeyparkarch.gif
>
>>lsimg abbeyparkarch.gif s_abbeyparkarch.gif
>
> (Cant remember where I got lsing.exe from)

You reference "LSIMG" in "Is there a cli tool to list image dimensions?" on 
comp.unix.shell
There appear to be no other references to it besides your message, so I 
assume you wrote it, or modified some other program.
Are you sure it is an exe and not just a shell script wrapper around 
imagemagick's 'identify' utility? 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Winge about Windows no: XLS143556BJ
  2006-04-05  2:16     ` Joe Smith
@ 2006-04-26 13:32       ` zzapper
  0 siblings, 0 replies; 6+ messages in thread
From: zzapper @ 2006-04-26 13:32 UTC (permalink / raw)
  To: cygwin-talk

"Joe Smith" <unknown_kev_cat@hotmail.com> wrote in
news:e0v97c$kao$1@sea.gmane.org: 

> 
> "zzapper" wrote in message 
> news:Xns979788D103323zzappergmailcom@80.91.229.5...
>> George <XXXXXX@sbcglobal.net.invalid> wrote in 
>> news:20060331103522.GA1376@home:
>                    ^^^^
>>> Imagemagick is what you're looking for.
>>>
>>>      convert foo.jpg -resize 96x96 bar.jpg
>>>
>>> Arbitrarily selected self-help link:
>>>
>>>      http://www-128.ibm.com/developerworks/library/l-graf/?ca=dnt-428
>>
>> Hi merci tout le monde
>>
>> What worked for me (fortunately I already had ImageMagick!)
>>
>>>convert -sample 80x40 abbeyparkarch.gif s_abbeyparkarch.gif
>>
>>>lsimg abbeyparkarch.gif s_abbeyparkarch.gif
>>
>> (Cant remember where I got lsing.exe from)
> 
> You reference "LSIMG" in "Is there a cli tool to list image
> dimensions?" on comp.unix.shell
> There appear to be no other references to it besides your message, so
> I assume you wrote it, or modified some other program.
> Are you sure it is an exe and not just a shell script wrapper around 
> imagemagick's 'identify' utility? 
> 
> 
> 
> 

Joe,
I heard about it from probably a CygWin NG. Its part of IM ImageMagick.

Just did a strings lsimg.exe

Whatever it's very useful
-- 
http://successtheory.com/tips/ Vim, Zsh, MySQL Tips

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-04-26 13:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-31  9:44 Winge about Windows no: XLS143556BJ zzapper
2006-03-31 10:14 ` Corinna Vinschen
2006-03-31 10:35 ` George
2006-03-31 12:27   ` zzapper
2006-04-05  2:16     ` Joe Smith
2006-04-26 13:32       ` zzapper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).