├── .github └── FUNDING.yml ├── README.md ├── ahk-v1-1 ├── Examples-ahk-v1-1 │ ├── Gdip.Tutorial.1-Draw.Shapes.ahk │ ├── Gdip.Tutorial.10-Rotate.Flip.or.Mirror.an.image.ahk │ ├── Gdip.Tutorial.11-Using.BRAs.to.perform.animations.ahk │ ├── Gdip.Tutorial.12-Pixelate.a.bitmap.using.machine.code.ahk │ ├── Gdip.Tutorial.13-Learning-One-Graphics-Paths.ahk │ ├── Gdip.Tutorial.14-RazorHalo-Rotate-At-Center.ahk │ ├── Gdip.Tutorial.15-Just-Me-Path-Gradients.ahk │ ├── Gdip.Tutorial.16-Just-Me-GetProperty.ahk │ ├── Gdip.Tutorial.17-robodesign-Draw-Customized-Texts.ahk │ ├── Gdip.Tutorial.2-Draw.Outlined.Shapes.ahk │ ├── Gdip.Tutorial.3-Create.Gui.From.Image.ahk │ ├── Gdip.Tutorial.4-Draw.Circles.ahk │ ├── Gdip.Tutorial.5-Create.Bitmap.ahk │ ├── Gdip.Tutorial.6-Image.Editing.ahk │ ├── Gdip.Tutorial.7-Draw.draggable.rounded.rectangle.ahk │ ├── Gdip.Tutorial.8-Write.text.onto.a.gui.ahk │ ├── Gdip.Tutorial.9-Create.a.progress.bar.on.standard.gui.ahk │ ├── Gdip.tutorial.file-fish.bra │ ├── MJ.jpg │ ├── background.png │ └── needle.png ├── Gdip_All.ahk └── gdi.ahk ├── ahk-v2 ├── Examples-ahk-v2 │ ├── Gdip.Tutorial.1-Draw.Shapes.ahk │ ├── Gdip.Tutorial.10-Rotate.Flip.or.Mirror.an.image.ahk │ ├── Gdip.Tutorial.12-Pixelate.a.bitmap.using.machine.code.ahk │ ├── Gdip.Tutorial.13-Learning-One-Graphics-Paths.ahk │ ├── Gdip.Tutorial.14-RazorHalo-Rotate-At-Center.ahk │ ├── Gdip.Tutorial.15-Just-Me-Path-Gradients.ahk │ ├── Gdip.Tutorial.17-robodesign-Draw-Customized-Texts.ahk │ ├── Gdip.Tutorial.2-Draw.Outlined.Shapes.ahk │ ├── Gdip.Tutorial.3-Create.Gui.From.Image.ahk │ ├── Gdip.Tutorial.4-Draw.Circles.ahk │ ├── Gdip.Tutorial.5-Create.Bitmap.ahk │ ├── Gdip.Tutorial.6-Image.Editing.ahk │ ├── Gdip.Tutorial.7-Draw.draggable.rounded.rectangle.ahk │ ├── Gdip.Tutorial.8-Write.text.onto.a.gui.ahk │ ├── Gdip.Tutorial.9-Create.a.progress.bar.on.standard.gui.ahk │ ├── Gdip.tutorial.file-fish.bra │ ├── MJ.jpg │ ├── background.png │ └── needle.png └── Gdip_All.ahk ├── credits.txt └── functions-list.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/README.md -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.1-Draw.Shapes.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.1-Draw.Shapes.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.10-Rotate.Flip.or.Mirror.an.image.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.10-Rotate.Flip.or.Mirror.an.image.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.11-Using.BRAs.to.perform.animations.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.11-Using.BRAs.to.perform.animations.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.12-Pixelate.a.bitmap.using.machine.code.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.12-Pixelate.a.bitmap.using.machine.code.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.13-Learning-One-Graphics-Paths.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.13-Learning-One-Graphics-Paths.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.14-RazorHalo-Rotate-At-Center.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.14-RazorHalo-Rotate-At-Center.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.15-Just-Me-Path-Gradients.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.15-Just-Me-Path-Gradients.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.16-Just-Me-GetProperty.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.16-Just-Me-GetProperty.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.17-robodesign-Draw-Customized-Texts.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.17-robodesign-Draw-Customized-Texts.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.2-Draw.Outlined.Shapes.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.2-Draw.Outlined.Shapes.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.3-Create.Gui.From.Image.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.3-Create.Gui.From.Image.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.4-Draw.Circles.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.4-Draw.Circles.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.5-Create.Bitmap.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.5-Create.Bitmap.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.6-Image.Editing.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.6-Image.Editing.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.7-Draw.draggable.rounded.rectangle.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.7-Draw.draggable.rounded.rectangle.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.8-Write.text.onto.a.gui.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.8-Write.text.onto.a.gui.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.9-Create.a.progress.bar.on.standard.gui.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.Tutorial.9-Create.a.progress.bar.on.standard.gui.ahk -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/Gdip.tutorial.file-fish.bra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/Gdip.tutorial.file-fish.bra -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/MJ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/MJ.jpg -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/background.png -------------------------------------------------------------------------------- /ahk-v1-1/Examples-ahk-v1-1/needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Examples-ahk-v1-1/needle.png -------------------------------------------------------------------------------- /ahk-v1-1/Gdip_All.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/Gdip_All.ahk -------------------------------------------------------------------------------- /ahk-v1-1/gdi.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v1-1/gdi.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.1-Draw.Shapes.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.1-Draw.Shapes.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.10-Rotate.Flip.or.Mirror.an.image.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.10-Rotate.Flip.or.Mirror.an.image.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.12-Pixelate.a.bitmap.using.machine.code.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.12-Pixelate.a.bitmap.using.machine.code.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.13-Learning-One-Graphics-Paths.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.13-Learning-One-Graphics-Paths.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.14-RazorHalo-Rotate-At-Center.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.14-RazorHalo-Rotate-At-Center.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.15-Just-Me-Path-Gradients.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.15-Just-Me-Path-Gradients.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.17-robodesign-Draw-Customized-Texts.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.17-robodesign-Draw-Customized-Texts.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.2-Draw.Outlined.Shapes.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.2-Draw.Outlined.Shapes.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.3-Create.Gui.From.Image.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.3-Create.Gui.From.Image.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.4-Draw.Circles.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.4-Draw.Circles.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.5-Create.Bitmap.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.5-Create.Bitmap.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.6-Image.Editing.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.6-Image.Editing.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.7-Draw.draggable.rounded.rectangle.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.7-Draw.draggable.rounded.rectangle.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.8-Write.text.onto.a.gui.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.8-Write.text.onto.a.gui.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.Tutorial.9-Create.a.progress.bar.on.standard.gui.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.Tutorial.9-Create.a.progress.bar.on.standard.gui.ahk -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/Gdip.tutorial.file-fish.bra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/Gdip.tutorial.file-fish.bra -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/MJ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/MJ.jpg -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/background.png -------------------------------------------------------------------------------- /ahk-v2/Examples-ahk-v2/needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Examples-ahk-v2/needle.png -------------------------------------------------------------------------------- /ahk-v2/Gdip_All.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/ahk-v2/Gdip_All.ahk -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/credits.txt -------------------------------------------------------------------------------- /functions-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marius-sucan/AHK-GDIp-Library-Compilation/HEAD/functions-list.txt --------------------------------------------------------------------------------