Re: Converting JPG/etc to ICO

2011-01-13 Thread Vlastimil Miler
If the only thing you need is converting the image to an .ico file, you can use an online service like http://www.rw-designer.com/image-to-icon ~| Order the Adobe Coldfusion Anthology now!

RE: Converting JPG/etc to ICO

2011-01-09 Thread wabba
If a standalone works, IcoFX is small/fast -Original Message- From: Rick Root [mailto:rick.r...@gmail.com] Sent: Saturday, January 08, 2011 5:02 PM To: cf-talk Subject: Converting JPG/etc to ICO Hey folks, I'm looking for a tool that can convert JPG, GIF, and other images to true .ICO

Re: Converting JPG/etc to ICO

2011-01-09 Thread Rick Root
On Sun, Jan 9, 2011 at 3:08 PM, wabba must...@wabba.net wrote: If a standalone works, IcoFX is small/fast No, this is for Coldfusion. Rick ~| Order the Adobe Coldfusion Anthology now!

Re: Converting JPG/etc to ICO

2011-01-09 Thread Azadi Saryev
found this one... never used it myself though: http://image4j.sourceforge.net/ - allows you to read and write certain image formats (ICO, BMP) in 100% pure Java Azadi On 09/01/2011 09:02 , Rick Root wrote: Hey folks, I'm looking for a tool that can convert JPG, GIF, and other images to

Re: Converting JPG/etc to ICO

2011-01-09 Thread Leigh
found this one... never used it myself though: Me neither. I ran a very quick test which *seemed* to work okay. I do not know much about the *.ico format. But you could probably use the .net stuff too. IIRC you can convert to *.ico using System.Drawing classes. -Leigh

Re: Converting JPG/etc to ICO

2011-01-09 Thread Larry Lyons
Hey folks, I'm looking for a tool that can convert JPG, GIF, and other images to true .ICO files. We currently use cfx_imagecr3 for most of our image conversion (it works better than cfimage) but neither actually support writing of ICO files. Rick Rick, Irfanview is a very nice standalone app

Re: Converting JPG/etc to ICO

2011-01-09 Thread Nathan Strutz
Rick, Imagemagick is pretty much the best thing in the world. It's very fast and works with about any image file format, plus it's free and even ships with most linux distributions. http://www.imagemagick.org/script/formats.php Call it via command line, like this:\ convert.exe myimage.jpg

Re: Converting JPG/etc to ICO

2011-01-09 Thread Rick Root
On Sun, Jan 9, 2011 at 7:57 PM, Azadi Saryev azadi.sar...@gmail.com wrote: found this one... never used it myself though: http://image4j.sourceforge.net/ - allows you to read and write certain image formats (ICO, BMP) in 100% pure Java Azadi, This worked most excellently. Since it uses

Re: Converting JPG/etc to ICO

2011-01-09 Thread Rick Root
On Mon, Jan 10, 2011 at 12:13 AM, Nathan Strutz str...@gmail.com wrote: http://www.imagemagick.org/script/formats.php I guess you didn't actually look at the information on that link. ImageMagick doesn't support writing .ICO files. Rick

Converting JPG/etc to ICO

2011-01-08 Thread Rick Root
Hey folks, I'm looking for a tool that can convert JPG, GIF, and other images to true .ICO files. We currently use cfx_imagecr3 for most of our image conversion (it works better than cfimage) but neither actually support writing of ICO files. Rick