Getting height and width of images

I need to load images with different sizes. Is there any way to get the height and width of an uploaded file with LoadImageIntoTexture?

LoadImageIntoTexture takes a provided Texture2D and assigns the loaded image to it. From that you can use that Texture2D and use its width and height properties to get that info.

Texture2D class ref

Texture class ref

Cheers

==