绘制弧线
#Include <GDIPlus.au3>
_GDIPlus_GraphicsDrawArc($hGraphics, $iX, $iY, $iWidth, $iHeight, $fStartAngle, $fSweepAngle[, $hPen = 0])
$hGraphics | 图形对象的句柄 |
$iX | 包围弧线边界的矩形左上角 X 坐标 |
$iY | 包围弧线边界的矩形左上角 Y 坐标 |
$iWidth | 包围弧线边界的矩形宽度 |
$iHeight | 包围弧线边界的矩形高度 |
$fStartAngle | X 轴与弧线起始点之间的角度 |
$fSweepAngle | 弧线起点和终点间的角度 |
$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_GraphicsDrawArc($hGraphic, 160, 100, 10, 10, 180, 360)
_GDIPlus_GraphicsDrawArc($hGraphic, 180, 100, 10, 10, 180, 360)
_GDIPlus_GraphicsDrawArc($hGraphic, 160, 104, 30, 30, 160, -140)
_GDIPlus_GraphicsDrawArc($hGraphic, 140, 80, 70, 70, 180, 360)
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
; 清理资源
_GDIPlus_GraphicsDispose($hGraphic)
_GDIPlus_Shutdown()
EndFunc ;==>_Main