SFML community forums
Help => Graphics => Topic started by: Drak on May 24, 2011, 01:56:06 am
-
I have a window (800x600) and I render a box sprite that's 32 x 32 (.png format). It looks like this: (the teal cube)
http://i53.tinypic.com/21o206r.png
Obviously, it's being stretched or something similar, as it's not the correct dimensions. Does this have todo with my resolution? Why is it not appearing like it should? Thanks.
-
Try this:
Image.SetScale(32, 32);
Of course, you can always draw a shape, unless the box in your example is just a placeholder for an image
-
Try this:
Image.SetScale(32, 32);
Of course, you can always draw a shape, unless the box in your example is just a placeholder for an image
It's just a place holder. I'm not sure why, but after calling that function, this happened:
http://i51.tinypic.com/15x0cnt.png
-
Jaja, sorry, but I can't look at pictures on image shack (I'm on my school computer :cry: ) so you'll have to describe it to me :(
-
Try this:
Image.SetScale(32, 32);
Of course, you can always draw a shape, unless the box in your example is just a placeholder for an image
It's just a place holder. I'm not sure why, but after calling that function, this happened:
http://i51.tinypic.com/15x0cnt.png
That's what's supposed to happen. You're setting it to scale the image so that it's 32 times wider and 32 times taller. Try Resize(32, 32) instead.
-
Jaja, sorry, but I can't look at pictures on image shack (I'm on my school computer :cry: ) so you'll have to describe it to me :(
He's not using ImageShack. He's using TinyPic.
-
Whatever, it's still blocked
And I meant Resize(32, 32). So sorry :oops: