Reputation:
I wish to get the current size for an image being displayed with TImage, this object has the Proportional property set to True and is aligned to Client with main form. So, when resizing the form I wanna get the current size for that image, not canvas size neither real size for that image. Getting the current size I can show what's the percentage for current image size respect to real image size. Thanks in advance
Upvotes: 3
Views: 3480
Reputation: 36840
You can compare Image1.Picture.Width or .Height with Image1.Width or .Height.
To know if the image is streched proportional using the horizontal or vertical dimension, you should compare the ratio's of the two:
if Image1.Width/Image1.Height > Image1.Picture.Width/Image1.Picture.Height then
Result:=Image1.Picture.Width/Image1.Width
else
Result:=Image1.Picture.Height/Image1.Height;
using a mathematical trick to convert the divisions into multiplications, you can avoid the conversions into float values, which also calculate a bit faster by using:
if Image1.Width*Image1.Picture.Height >Image1.Picture.Width*Image1.Height then
Upvotes: 1
Reputation: 8241
Load this picture into a virtual TCanvas (or whatever) and then leave the property Proportional as False. Now you can retrieve the original size of the picture. If the image is usually very big, maybe you should use some external graphical libraries.
Upvotes: 0
Reputation: 84550
I don't think there's a built-in way to do this. You may just have to calculate it. Something like this:
Picture
property.Upvotes: 4