SFML community forums

Help => Graphics => Topic started by: Debonair on July 17, 2015, 05:51:05 pm

Title: [Solved] Custom icon for renderwindow
Post by: Debonair on July 17, 2015, 05:51:05 pm
window.setIcon(image.GetWidth(), image.GetHeight(), image.GetPixelsPtr());

Tried using this, but it's telling me the methods aren't within Image as members. Is this an outdated way of doing it, or am I doing it wrong? Using SFML 2.2.
Title: Re: Custom icon for renderwindow
Post by: eXpl0it3r on July 17, 2015, 05:54:58 pm
Why don't you look at the documentation? The method naming scheme has changed since SFML 1.6.
Title: Re: Custom icon for renderwindow
Post by: Debonair on July 17, 2015, 06:09:10 pm
According to that, it should be something like this:
window.setIcon(image.getSize().x, image.getSize().y, image.getPixelsPtr());
Compiled fine, but the icon didn't change. Problems with the image format maybe? Using a 128x128 .ico.
Title: Re: Custom icon for renderwindow
Post by: eXpl0it3r on July 17, 2015, 06:13:50 pm
Well look at the console output and/or the documentation. The *.ico format is not supported.
Title: Re: Custom icon for renderwindow
Post by: Debonair on July 17, 2015, 06:50:44 pm
.png it is then. Case solved I guess. Thanks.