Reputation: 2691
I have icon for my application which is picture in jpg format. In the picture is logo of my application which has oval shape. I want to remove white background from this picture. I have irfan view. Or maybe is the way to set transparent background.
Thanks
Upvotes: 7
Views: 115193
Reputation: 992
If you want already transparent icons with lots of options here it is Flaticon - Transparent HD icons
Upvotes: 0
Reputation: 2379
Simple, you can use site LunaPic
Upvotes: 28
Reputation: 162164
JPEG doesn't support transparency (at least not in the variant that's widely used and supported). You need to use either PNG with an alpha channel, or the Windows .ICO format, which essentially is a DIB with either a colour key, or an alpha channel. Or use SVG, which is a vector format, and supports transparent background.
Upvotes: 9
Reputation: 96109
What format does your language/system want icons in?
Simply save in that format selecting 'white' as the transparent colour. Jpeg doesn't have transparency but very few languages use jpeg as an icon format
Upvotes: 1