SFML community forums

Help => Graphics => Topic started by: Grimshaw on March 26, 2011, 11:36:31 pm

Title: Image loading question
Post by: Grimshaw on March 26, 2011, 11:36:31 pm
Hello, when a sf::Image is loaded, and it gives an error of the kind "resolution not supported by graphic card" because it is too big, i know it won't be usable as a Sprite, but are the pixels loaded? as if i wanted to manipulate the image?

Thanks
Title: Image loading question
Post by: Laurent on March 26, 2011, 11:39:02 pm
Nop, it's either a full success or a failure, there's nothing in between.

I know I should separate the "image in RAM" and "OpenGL texture" concepts in two separate classes, but... I still haven't found how to make it easy enough :)
Title: Image loading question
Post by: Grimshaw on March 26, 2011, 11:52:26 pm
I suggest a new parameter to LoadFromFile() with a default value.

Image.LoadFromFile("mypng.png", true);

being the "true" something like "Keep the pixels".

sf::Image::LoadFromFile(string Filename, bool KeepPixels = false){...}

What do you think?

No change at all for sfml users and a new option is added if thats the user's will :)

Plus, shouldnt be too painful to implement the new functionality :P
Title: Image loading question
Post by: Laurent on March 27, 2011, 12:01:46 am
How would that help to solve your problem? Isn't it the opposite, keeping the pixels but not the texture?
Title: Image loading question
Post by: Grimshaw on March 27, 2011, 12:30:45 am
I meant, in case of failure, allow the user to keep the pixels in sf::Image, while not having a GL texture :)
Title: Image loading question
Post by: Laurent on March 27, 2011, 11:15:46 am
Ah, I thought it was "store pixels in RAM or not".

So... I don't like your idea at all ;) It would produce half-working objects. In my opinion this feature requires a new design, not just a boolean flag in a function.

Something like:
Code: [Select]
sf::Image image;
image.LoadFromFile(...);
// get/set pixels

sf::Texture texture;
texture.LoadFromImage(image);
// bind

But less complicated (three different classes to display something on screen is too much).
Title: Image loading question
Post by: Grimshaw on March 27, 2011, 03:35:18 pm
I agree with your opinion, even tough it still makes sense to me that LoadFromFile actually loads something, even if too big for the gpu :D

LoadFromFile would still return false, as the texture failed to load, but the pixels were actually loaded in memory. I think it makes sense specially because we must check if the image loaded sucessfully or not.

Also, sf::Image could have a new method, for a RAM load only, something only for that purpose :D

But no hurries, think about it and decide whats best, i really trust your judgement :D

Thanks
Title: Image loading question
Post by: Laurent on March 27, 2011, 05:30:45 pm
This is a very inconsistent design, if I add the option to load pixels only to the RAM (which is an important feature in my opinion) it will definitely not do it this way.
Title: Image loading question
Post by: devlin on March 27, 2011, 05:58:23 pm
Perhaps separate Texture and Image? Although that would break a lot of existing code. Another option would be to subclass an ImageBuffer of sorts?
Title: Image loading question
Post by: Grimshaw on March 27, 2011, 06:58:22 pm
Yeah, i agree to leaving Image as it is, and creating something else specificly for this ;D
Title: Image loading question
Post by: OniLinkPlus on March 28, 2011, 03:41:48 am
I think sf::Texture (being the same as the current sf::Image) and sf::Image (RAM only, Texture can be built from it, possibly?) would be good.
Title: Image loading question
Post by: Laurent on March 28, 2011, 07:57:05 am
It's a good design but it makes things really complicated for people who just want to load a sprite:
Code: [Select]
sf::Image image;
image.LoadFromFile("sprite.png");

sf::Texture texture;
texture.LoadFromImage(image);

sf::Sprite sprite;
sprite.SetTexture(texture);

And if you want to modify pixels (set a transparent color, replace pixels, or whatever) you must keep the three objects.
Title: Image loading question
Post by: OniLinkPlus on March 28, 2011, 03:35:45 pm
Quote from: "Laurent"
It's a good design but it makes things really complicated for people who just want to load a sprite:
Code: [Select]
sf::Image image;
image.LoadFromFile("sprite.png");

sf::Texture texture;
texture.LoadFromImage(image);

sf::Sprite sprite;
sprite.SetTexture(texture);

And if you want to modify pixels (set a transparent color, replace pixels, or whatever) you must keep the three objects.
It shouldn't be required to load a texture from an image, just an option, imo. I think you should still be able to load texture from files/memory/etc, just add images as one more option.
Title: Image loading question
Post by: Laurent on March 28, 2011, 03:43:31 pm
Quote
It shouldn't be required to load a texture from an image, just an option, imo. I think you should still be able to load texture from files/memory/etc, just add images as one more option.

Good point.