填充封闭曲线
#Include <GDIPlus.au3>
_GDIPlus_GraphicsFillClosedCurve($hGraphics, $aPoints[, $hBrush = 0])
$hGraphics | 图形对象的句柄 |
$aPoints | 指定曲线点的数组: [0][0] - 点数量 [1][0] - 点 1 的 X 位置 [1][1] - 点 1 的 Y 位置 [2][0] - 点 2 的 X 位置 [2][1] - 点 2 的 Y 位置 [n][0] - 点 n 的 X 位置 [n][1] - 点 n 的 Y 位置 |
$hBrush | [可选参数] 填充封闭曲线的画笔对象句柄, 如果为 0, 使用黑色画笔.. |
成功: | 返回 True |
失败: | 返回 False |
在MSDN中搜索
#include <GUIConstantsEx.au3>
#include <GDIPlus.au3>
_Main()
Func _Main()
Local $hGUI, $hGraphic, $aPoints[8][2]
; 创建 GUI
$hGUI = GUICreate("GDI+", 400, 300)
GUISetState()
; 填充基数样条
_GDIPlus_Startup()
$hGraphic = _GDIPlus_GraphicsCreateFromHWND($hGUI)
$aPoints[0][0] = 7
$aPoints[1][0] = 50
$aPoints[1][1] = 50
$aPoints[2][0] = 100
$aPoints[2][1] = 25
$aPoints[3][0] = 200
$aPoints[3][1] = 5
$aPoints[4][0] = 250
$aPoints[4][1] = 50
$aPoints[5][0] = 300
$aPoints[5][1] = 100
$aPoints[6][0] = 350
$aPoints[6][1] = 200
$aPoints[7][0] = 250
$aPoints[7][1] = 250
_GDIPlus_GraphicsFillClosedCurve($hGraphic, $aPoints)
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
; 清理资源
_GDIPlus_GraphicsDispose($hGraphic)
_GDIPlus_Shutdown()
EndFunc ;==>_Main