* Add width & height to TJSImageBitmap

This commit is contained in:
Michael Van Canneyt 2025-03-03 17:48:27 +01:00
parent 12a9d92773
commit a8f6799748

View File

@ -1765,9 +1765,16 @@ type
end;
{ TJSImageBitmap }
TJSImageBitmap = class external name 'ImageBitmap' (TJSObject)
private
FHeight: cardinal; external name 'height';
FWidth: cardinal; external name 'width';
public
procedure close();
property width : cardinal read FWidth;
property height : cardinal read FHeight;
end;
TJSOffscreenCanvasRenderingContext2D = class;