LCL/GraphUtil: Exit ScaleImg immediately when no size change of the image is needed.

This commit is contained in:
wp_xyz 2024-11-05 17:32:43 +01:00
parent aef3e62e80
commit 77121d9b42

View File

@ -371,6 +371,9 @@ var
srcImg: TLazIntfImage = nil;
destCanvas: TLazCanvas = nil;
begin
if (AImage.Width = AWidth) and (AImage.Height = AHeight) then
exit;
try
// Create the source LazIntfImage
srcImg := AImage.CreateIntfImage;