i'm a newbie in XNA just in case. What i try to do is load a texture in a different size from his original, or at least have the possibility to change his size after. I see in some places that i can use:

Texture2D.FromStream(GraphicsDevice graphicsDevice, Stream stream, 
                 int width, int height, bool zoom)

But i also read that loading textures in this way is ignoring the ContentManager, and that i'm making the job for the garbage collector more difficult.

What is the Correct way to load an image in any size, using the ContentManager ? If that isn't possible can i change his size proportionally, like using a zoom?

Context: I'm creating a board of n x n peaces. When n is too big i need that automatically the peaces becomes more smaller.

link|improve this question

73% accept rate
Joe's answer is correct. Additionally: there is no difference to the garbage collector whether you use ContentManager or not. It only affects how you must unload the textures, if that is something your game requires (eg: when changing between levels). Take a look at my answer here: stackoverflow.com/questions/4264995/…. – Andrew Russell Dec 4 '10 at 1:24
feedback

2 Answers

up vote 4 down vote accepted

To load the texture:

Texture2D tex = Content.Load<Texture2D>("somefile");

To resize it use one of the SpriteBatch overloads that takes "scale" http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.graphics.spritebatch.draw.aspx

float scale = .5f; //50% smaller
SpriteBatch.Draw(tex, position, source, Color.White, rotation, scale, SpriteEffects.None, 0f);

If you are new to XNA, I suggest you read this short tutorial, and also check out Education Catalog at create.msdn.com

link|improve this answer
thank you!, it works just in the way i want :)...Now about the question if use or not the methods that i mention, what do you think is safe, or his use is other thing? – Ps1CsCpp Dec 3 '10 at 20:55
feedback

The problem I think is the difference between resizing and scaling. The latter means both the X and Y dimensions are adjusted, but how does one adjust the dimensions independantly, ie resize the resource for like lets say in-game resizable windows or frames so we can control them with 1 single function (draw_frame(Vector2 Position, Vector2 Size))?

I can only find references for uniform scaling and any resource I do find about resizing refers back to scaling... A bit annoying really...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.