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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...