填充饼图
#Include <GDIPlus.au3>
_GDIPlus_GraphicsFillPie($hGraphics, $iX, $iY, $iWidth, $iHeight, $fStartAngle, $fSweepAngle[, $hBrush = 0])
$hGraphics | 图形对象的句柄 |
$iX | 包围饼图边界的矩形左上角 X 坐标 |
$iY | 包围饼图边界的矩形左上角 Y 坐标 |
$iWidth | 包围饼图边界的矩形宽度 |
$iHeight | 包围饼图边界的矩形高度 |
$fStartAngle | 饼图弧度起点与 X 轴之间的角度,正值为顺时针旋转. |
$fSweepAngle | 饼图弧度起点和终点之间的角度,正值为顺时针旋转. |
$hBrush | [可选参数] 填充饼图的画笔对象句柄. 如果为 0, 使用黑色画笔. |
成功: | 返回 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_GraphicsFillPie($hGraphic, 150, 80, 100, 100, 45, 90)
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
; 清理资源
_GDIPlus_GraphicsDispose($hGraphic)
_GDIPlus_Shutdown()
EndFunc ;==>_Main