绘制椭圆
#Include <GDIPlus.au3>
_GDIPlus_GraphicsDrawEllipse($hGraphics, $iX, $iY, $iWidth, $iHeight[, $hPen = 0])
$hGraphics | 图形对象的句柄 |
$iX | 包围椭圆边界的矩形左上角 X 坐标 |
$iY | 包围椭圆边界的矩形左上角 Y 坐标 |
$iWidth | 包围椭圆边界的矩形宽度 |
$iHeight | 包围椭圆边界的矩形高度 |
$hPen | [可选参数] 用于绘制椭圆的画笔句柄. 如果为 0,使用宽度为 1 的实心黑笔. |
成功: | 返回 True |
失败: | 返回 False |
在MSDN中搜索
#include <GUIConstantsEx.au3>
#include <GDIPlus.au3>
_Main()
Func _Main()
Local $hGUI, $hGraphic
; 创建 GUI
$hGUI = GUICreate("GDI+", 400, 300)
GUISetState()
; 描绘椭圆
_GDIPlus_Startup()
$hGraphic = _GDIPlus_GraphicsCreateFromHWND($hGUI)
_GDIPlus_GraphicsDrawEllipse($hGraphic, 130, 100, 140, 70)
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
; 清理资源
_GDIPlus_GraphicsDispose($hGraphic)
_GDIPlus_Shutdown()
EndFunc ;==>_Main