interface graphics
...
predicates
drawImageF :(image Image, real X, real Y).
drawImageI :(image Image, integer X, integer Y).
% @short Draw #Image at the point (#X, #Y).% @details See gdi+ Graphifs.DrawImage in MSDN% @endpredicates
drawImageF :(image Image, pointF Point).
drawImageI :(image Image, pointI Point).
% @short Draw #Image at #Point.% @details See gdi+ Graphifs.DrawImage in MSDN% @endpredicates
drawImageInRectF :(image Image, real X, real Y, real Width, real Height).
drawImageInRectI :(image Image, integer X, integer Y, integer Width, integer Height).
% @short Draw #Image in the rectangle (#X, #Y, #Width, #Height). The #Image is resized to fit the rectangle.% @details See gdi+ Graphifs.DrawImage in MSDN% @endpredicates
drawImageInRectF :(image Image, rectF Rect).
drawImageInRectI :(image Image, rectI Rect).
% @short Draw #Image in the rectangle #Rect. The #Image is resized to fit the rectangle.% @details See gdi+ Graphifs.DrawImage in MSDN% @end