Jump to content

icon converter


william
 Share

Recommended Posts

Does anybody know a linux based application that converts .ico files into jpeg, png, bmp, etc.

I downloaded a set of icons which the files are .ico and would like to use under linux.

Thanks.

Edited by william
Link to comment
Share on other sites

ImageMagick does this:

 

convert image.ico image.gif

 

a quick and dirty script that will convert all the images in a directory from ico to gif:

 

#!/bin/bash

for img in * 
do imagenm=`basename $img .ico` 
convert $img $imagenm.gif 
done

 

Make a directory where you put all your ico files and drop this script in there and chmod +x it and run it. Should work.

Edited by Steve Scrimpshire
Link to comment
Share on other sites

Before posting I had spent almost 1 hour trying to convert it in windows and its shareware applications, but without success.

bvc, gthumb was here in front of me :wall: I converted a batch of 330 icons at once.

Steve, I'll keep your script for a future use. Thank you alll, guys.

Link to comment
Share on other sites

Thanks for the links, bvc.

My need was only for this set of icons that I found quite cute (GANT), I had used as .ico files with rox and gdesklets, but I'm editing some enlightenment theme files in order to put icons on the desktop and it needs to be .png intead .ico. That's all.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...