Jump to content

I can draw a heart shape with _GDIPlus ... ?


Recommended Posts

If you look in the help file at GUICtrlSetGraphic you'll see in the example a drawing that's heart-shaped one side [but not the other]. you should be able to make that symmetrical to produce your heart drawing.

William

Link to comment
Share on other sites

I have this script on my computer for long time ago, someone from this forum wrote this code some time ago [i don't know who but all credits go for him], maybe helps you:

AutoItSetOption("PixelCoordMode",1)
Global $COLOR = 0x000000FF ; RED

HotKeySet("{ESC}","Quit") ;Press ESC to Quit

While True
    $POS = MouseGetPos()
    DrawHeart($POS[0],$POS[1])
    Sleep(200)
WEnd

Func Quit()
    Exit
EndFunc

Func DrawPixel($DC,$X,$Y,$COLOR)
    DllCall ("gdi32.dll","long","SetPixel","long",$DC,"long",$X,"long",$Y,"long",$COLOR)
EndFunc

Func DrawHeart($X,$Y)
    $DC = DllCall ("user32.dll", "int", "GetDC", "hwnd", "")
    DrawPixel($DC[0],$X+0,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+0,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+0,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+0,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+0,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+0,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+1,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+2,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+3,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+4,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+5,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+6,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+7,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+8,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+9,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+10,$Y+21,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+21,$COLOR)
    DrawPixel($DC[0],$X+11,$Y+22,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+21,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+22,$COLOR)
    DrawPixel($DC[0],$X+12,$Y+23,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+21,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+22,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+23,$COLOR)
    DrawPixel($DC[0],$X+13,$Y+24,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+21,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+22,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+23,$COLOR)
    DrawPixel($DC[0],$X+14,$Y+24,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+21,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+22,$COLOR)
    DrawPixel($DC[0],$X+15,$Y+23,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+21,$COLOR)
    DrawPixel($DC[0],$X+16,$Y+22,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+17,$Y+21,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+18,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+19,$COLOR)
    DrawPixel($DC[0],$X+19,$Y+20,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+20,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+21,$Y+18,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+0,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+22,$Y+17,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+15,$COLOR)
    DrawPixel($DC[0],$X+23,$Y+16,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+1,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+24,$Y+14,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+2,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+25,$Y+13,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+3,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+4,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+10,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+11,$COLOR)
    DrawPixel($DC[0],$X+26,$Y+12,$COLOR)
    DrawPixel($DC[0],$X+27,$Y+5,$COLOR)
    DrawPixel($DC[0],$X+27,$Y+6,$COLOR)
    DrawPixel($DC[0],$X+27,$Y+7,$COLOR)
    DrawPixel($DC[0],$X+27,$Y+8,$COLOR)
    DrawPixel($DC[0],$X+27,$Y+9,$COLOR)
    DrawPixel($DC[0],$X+27,$Y+10,$COLOR)
    DllCall("user32.dll","int","ReleaseDC","hwnd",0,"int",$DC[0])
EndFunc
Edited by Andreik

When the words fail... music speaks.

Link to comment
Share on other sites

You can calculate also a heat

;code by AndyG
$user32 = DllOpen("user32.dll")
$gdi32 = DllOpen("gdi32.dll")
$w = 200
$h = 200
$radius = 100
$pi = 4 * ATan(1)

$hgui = GUICreate("Heart", $w, $h)
$bc = 0x000000
GUISetBkColor($bc, $hgui)
$hdc_gui = GetDC($hgui)
GUISetState()

For $y = 1 To $h
    For $x = 1 To $w
        $abstand = Sqrt((($w / 2) - $x) ^ 2 + (($h / 2) - $y) ^ 2)
        $p = ATan2(($w / 2) - $x, ($h / 2) - $y)
        $l = Abs($p) / $pi
        $r = (13 * $l - 22 * $l ^ 2 + 10 * $l ^ 3) / (6 - 5 * $l) * $radius
        If $abstand <= $r Then
            $col = 0x0000FF
        Else
            $col = 0x000000
        EndIf
        DllCall($gdi32, "long", "SetPixel", "long", $hdc_gui, "long", $x, "long", $y - 30, "long", $col)
    Next
Next

While GUIGetMsg() <> -3
WEnd

Func atan2($y, $x)
    Return (2 * ATan($y / ($x + Sqrt($x * $x + $y * $y))))
EndFunc

Func GetDC($handle)
    $dc = DllCall($user32, "int", "GetDC", "hwnd", $handle)
    Return $dc[0]
EndFunc

Br,

UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Link to comment
Share on other sites

Here the GDI+ version:

#include <GDIPlus.au3>
#include <WindowsConstants.au3>

Opt("GUIOnEventMode", 1)
Opt('MustDeclareVars', 1)

Global Const $iW = 200
Global Const  $iH = 200
Global Const  $radius = 100
Global Const  $pi = ACos(-1)
Global Const $dy = 30
Global $dist, $p, $l, $r, $col

Global $hWnd = GUICreate("GDI+ Heart using Math", $iW, $iH)
GUISetState()
GUISetOnEvent(-3, "_Close")

_GDIPlus_Startup()
Global $hGraphics = _GDIPlus_GraphicsCreateFromHWND($hWnd)
Global $hBitmap = _GDIPlus_BitmapCreateFromGraphics($iW, $iH, $hGraphics)
Global $hBackbuffer = _GDIPlus_ImageGetGraphicsContext($hBitmap)
Global $hPen = _GDIPlus_PenCreate(0, 1)
_GDIPlus_GraphicsSetSmoothingMode($hBackbuffer, 2)

Draw()
GUIRegisterMsg($WM_ERASEBKGND, "WM_ERASEBKGND")

While Sleep(30000)
WEnd


Func Draw()
    _GDIPlus_GraphicsClear($hBackbuffer)
    For $y = 1 To $iH
        For $x = 1 To $iW
            $dist = Sqrt((($iW / 2) - $x) ^ 2 + (($iH / 2) - $y) ^ 2)
            $p = ATan2(($iW / 2) - $x, ($iH / 2) - $y)
            $l = Abs($p) / $pi
            $r = (13 * $l - 22 * $l ^ 2 + 10 * $l ^ 3) / (6 - 5 * $l) * $radius
            If $dist <= $r Then
                $col = "FF0000"
            Else
                $col = "000000"
            EndIf
            _GDIPlus_PenSetColor($hPen, "0xFF" & $col)
            _GDIPlus_GraphicsDrawRect($hBackbuffer, $x, $y - $dy, 1, 1, $hPen)
        Next
        _GDIPlus_GraphicsDrawImageRect($hGraphics, $hBitmap, 0, 0, $iW, $iH)
    Next
EndFunc

Func ATan2($y, $x)
    Return (2 * ATan($y / ($x + Sqrt($x * $x + $y * $y))))
EndFunc

Func WM_ERASEBKGND()
        _GDIPlus_GraphicsDrawImageRect($hGraphics, $hBitmap, 0, 0, $iW, $iH)
        Return 1
EndFunc

Func _Close()
    GUIRegisterMsg($WM_ERASEBKGND, "")
    _GDIPlus_PenDispose($hPen)
    _GDIPlus_BitmapDispose($hBitmap)
    _GDIPlus_GraphicsDispose($hBackbuffer)
    _GDIPlus_GraphicsDispose($hGraphics)
    _GDIPlus_Shutdown()
    GUIDelete($hWnd)
    Exit
EndFunc

Br,

UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Link to comment
Share on other sites

This is without GDI Posted Image. I've added some gradient:

#include <GUIConstantsEx.au3>

$Form1 = GUICreate("Test", 210, 210)
_DrawHeart(5,5,200,200)

GUISetState(@SW_SHOW)

While 1
    Sleep(10)
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd

Func _DrawHeart($iX=5, $iY=5, $iW=100, $iH=100,$iStartColour=0xff0000, $iEndColour=0xffff00)
    Local $Ri,$Rf,$Rs,$Gi,$Gf,$Gs,$Bi,$Bf,$Bs,$m=$iH/2

    $Ri = Mod($iStartColour,256)
    $Gi = BitAND($iStartColour/256,255)
    $Bi = BitAND($iStartColour/65536,255)

    $Rf = Mod($iEndColour,256)
    $Gf = BitAND($iEndColour/256,255)
    $Bf = BitAND($iEndColour/65536,255)

    $Rs = Abs($Ri - $Rf)/$m
    $Gs = Abs($Gi - $Gf)/$m
    $Bs = Abs($Bi - $Bf)/$m

    If $Rf < $Ri Then $Rs = -$Rs
    If $Gf < $Gi Then $Gs = -$Gs
    If $Bf < $Bi Then $Bs = -$Bs

    GUICtrlCreateGraphic($iX, $iY, $iW, $iH)
    For $i=0 To $iW/2 Step 0.1
        $Rf = $Ri + $Rs * $i
        $Gf = $Gi + $Gs * $i
        $Bf = $Bi + $Bs * $i
        GUICtrlSetGraphic(-1, $GUI_GR_COLOR, "0x"&Hex($Bf,2) & Hex($Gf,2) & Hex($Rf,2), "0x"&Hex($Bf,2) & Hex($Gf,2) & Hex($Rf,2))
        GUICtrlSetGraphic(-1, $GUI_GR_ELLIPSE, 1+$i, $i, $iW/2-$i, $iH/2)
        GUICtrlSetGraphic(-1, $GUI_GR_ELLIPSE, $iW/2-1, $i, $iW/2-$i, $iH/2)
    Next
EndFunc

taietel

Link to comment
Share on other sites

@taietel very nice and fasssttt although drawing hearts is kitchy and something for girls, isn't it? :)

The interesting part is the mathematic...

Br,

UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Link to comment
Share on other sites

Yep, I know it's girlish! Posted Image But that kind of stuff gives me a strong, black coffee in the morning Posted Image.

I thought that if I draw two circles, move them down together a while, then towards eachother (and decreasing the diameter) will reach to the heart. It could be done with trigonometric functions, but I always go for the easy way. I've adapted the gradient from a function I've wrote some time ago.

taietel

Link to comment
Share on other sites

things happen when going to my girlfriend's birthday, but I can not give gifts directly, I think a gift made ​​by my hands will be very significant :)

gift will include: United, the fly heart, the words of love ... All appears right on the Desktop, I think it will be very impressed :)

Thanks everyone for me, "Heart", now I'm beginning the idea is then

Link to comment
Share on other sites

How do you calculate the maths in these things, I wouldn't know where to start?

Here a screenshot for the calculation AndyG used: http://www.autoit.de/index.php?page=Thread&postID=208517#post208517

Br,

UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Link to comment
Share on other sites

  • 4 years later...

I'm a little late, but if it can help someone ...

#Include <GDIPlus.au3>

Global $hGui, $hGraphic, $hBrush, $aPoints

$hGui = GUICreate ( 'Draw Heart Example', 500, 500 )
GUISetState()

_GDIPlus_Startup()
$hGraphic = _GDIPlus_GraphicsCreateFromHWND ( $hGui )
$hBrush = _GDIPlus_BrushCreateSolid ( 0xFFFF0000 )
$aPoints = _HeartGetPoints ( 40, 40, 420, 420, 80 )
_GDIPlus_GraphicsFillPolygon ( $hGraphic, $aPoints, $hBrush )

While 1
    Switch GUIGetMsg()
        Case -3 ; $GUI_EVENT_CLOSE
            _GDIPlus_BrushDispose ( $hBrush )
            _GDIPlus_GraphicsDispose ( $hGraphic )
            _GDIPlus_Shutdown()
            GUIDelete ( $hGui )
            Exit
    EndSwitch
    Sleep ( 30 )
WEnd

Func _HeartGetPoints ( $x=0, $y=0, $iWidth=100, $iHeight=100, $iPointCount=80 )
    If $iPointCount < 25 Then $iPointCount = 25
    Local $aPoints[$iPointCount+1][2], $k, $MaxX, $MinX, $MaxY, $MinY
    Local Const $fPI = ACos ( -1 )
    For $i = 0 To 2*$fPi Step ( 8/$iPointCount)*$fPi/4
        $k+=1
        If $k > UBound ( $aPoints ) -1 Then ExitLoop
        $aPoints[$k][0] = 16*Sin($i)^3
        $aPoints[$k][1] = 13*Cos($i)-5*Cos(2*$i)-2*Cos(3*$i)-Cos(4*$i)
        If $aPoints[$k][0] > $MaxX Then $MaxX = $aPoints[$k][0]
        If $aPoints[$k][1] > $MaxY Then $MaxY = $aPoints[$k][1]
        If $aPoints[$k][0] < $MinX Then $MinX = $aPoints[$k][0]
        If $aPoints[$k][1] < $MinY Then $MinY = $aPoints[$k][1]
    Next
    Local $w = Abs ( $MaxX ) + Abs ( $MinX )
    Local $h = Abs ( $MaxY ) + Abs ( $MinY )
    ; resize ( original ratio w/h : 0.965 )
    For $i = 1 To UBound ( $aPoints ) -1
        $aPoints[$i][0] = $x + ( $MaxX -$aPoints[$i][0] )*$iWidth/$w
        $aPoints[$i][1] = $y + ( $MaxY -$aPoints[$i][1] )*$iHeight/$h
    Next
    $aPoints[0][0] = UBound ( $aPoints ) -1
    Return $aPoints
EndFunc ;==> _HeartGetPoints()

 

Edited by wakillon

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Link to comment
Share on other sites

a simple heart from a magic number...

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Local $heart = 35880831050934, $side = 7
GUICreate('', $side * 7, $side * 7, -1, -1, $WS_POPUPWINDOW, $WS_EX_DLGMODALFRAME + $WS_EX_TOPMOST)
For $i = 0 To 48
    GUICtrlCreateLabel('', $side * ($i - (Int($i / 7) * 7)), $side * Int($i / 7), $side, $side, -1, $GUI_WS_EX_PARENTDRAG)
    GUICtrlSetBkColor(-1, 0xFF0000 + (Not Int(Mod($heart, 2)) * 0x00FFFF))
    $heart /= 2
Next
GUISetState()
While GUIGetMsg() <> $GUI_EVENT_CLOSE
WEnd

 

Edited by Chimp

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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