多角形を塗りつぶします。
#Include <GDIPlus.au3>
_GDIPlus_GraphicsFillPolygon($hGraphics, $aPoints[, $hBrush = 0])
パラメータ
$hGraphics | Graphicsオブジェクトのハンドル |
$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 | [オプション]多角形の塗りつぶしに使用されるBrushオブジェクトのハンドル。 |
返し値
成功: | True |
失敗: | False |
注意
なし。
関連
こちらも参照
MSDNライブラリでGdipFillPolygonIを検索して下さい。
例
#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GDIPlus.au3>
Opt('MustDeclareVars', 1)
_Main()
Func _Main()
Local $hGUI, $hGraphic, $aPoints[4][2]
; GUI作成
$hGUI = GUICreate("GDI+", 400, 300)
GUISetState()
; 多角形を描画
_GDIPlus_Startup()
$hGraphic = _GDIPlus_GraphicsCreateFromHWND($hGUI)
$aPoints[0][0] = 3
$aPoints[1][0] = 150
$aPoints[1][1] = 150
$aPoints[2][0] = 200
$aPoints[2][1] = 100
$aPoints[3][0] = 250
$aPoints[3][1] = 150
MsgBox(4096, "Information", "Fill Polygon")
_GDIPlus_GraphicsFillPolygon($hGraphic, $aPoints)
; ユーザーが終了するまでループ
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
; リソースを破棄
_GDIPlus_GraphicsDispose($hGraphic)
_GDIPlus_Shutdown()
EndFunc ;==>_Main