Jump to content

Recommended Posts

Posted

I cannot for the love of god find a way to change the color of a graphic created with gdi+ and cannot figure out how to change the position of an object created with gdiplus and then refresh that :mellow: any ways to do these?

global $warming = true
Posted

I cannot for the love of god find a way to change the color of a graphic created with gdi+ and cannot figure out how to change the position of an object created with gdiplus and then refresh that :mellow: any ways to do these?

Have a look at Radar animation with GDI+

It may be that you just clear the object and redraw it without any problems.

Posted

gocha, but is there any way to fill an arc? i see a _gdiplus_drawarc but no fill arc :mellow:

This is an example from the AutoIt help with a pen and a brush added.

#include <GuiConstantsEx.au3>
#include <GDIPlus.au3>

Opt('MustDeclareVars', 1)

_Main()

Func _Main()
    Local $hGUI, $hWnd, $hGraphic, $hBrush, $hPen

    ; Create GUI
    $hGUI = GUICreate("GDI+", 400, 300)
    $hWnd = WinGetHandle("GDI+")
    GUISetState()

    ; Draw a pie
    _GDIPlus_Startup()
    $hBrush = _GDIPlus_BrushCreateSolid(0xFFFFFF00)
    $hPen = _GDIPlus_PenCreate(0xFF0000FF, 3)

    $hGraphic = _GDIPlus_GraphicsCreateFromHWND($hWnd)

    _GDIPlus_GraphicsFillPie($hGraphic, 150, 80, 100, 100, 45, 270, $hBrush)
    _GDIPlus_GraphicsDrawPie($hGraphic, 150, 80, 100, 100, 45, 270, $hPen)
    ; Loop until user exits
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE

    ; Clean up resources
    _GDIPlus_BrushDispose($hBrush)
    _GDIPlus_PenDispose($hPen)
    _GDIPlus_GraphicsDispose($hGraphic)
    _GDIPlus_Shutdown()

EndFunc   ;==>_Main

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...