Thanks for interest No Dice.
I got fired up for a few months and wrote a custom class referencing CxImage and FreeImage libraries, burned out before writing export code.
I've never put together a good help file, just the text file. The resource manager auto captures any file with multi frames when loading allowing you to pick frame to open, or if Load Image @ Coord or cursor
is selected, it's then set to be drawn onto selected layer. Resource manager load image loads image and sets image to be drawn per cursor or coordinates.
Image Draw utilizes two clipboards, Windows and it's own internal ARGB. Any image on Windows clipboard can now be auto center pasted by setting Load Image Origin->Centered, Edit->Paste, pressing Draw button.
The same applies to Load Image @ Coordinates.
Resource Manager->Create New Resource is not layer based like Color Mixer. Use a unique name, Create makes ARGB composite of all visible layers. Amend button allows replacing image, or adding frames to resource
after frame '0' is created.
Future Resource Manager->Export button will build multi-resource vista icons, and multi-frame GIF & TIF files.
--------------------------------------------------------------------------------------------------------------------------
Direct Draw example.idf (need to document better)
; whatever project size you want
Project 984,744
; Scale 1"=1" (others defined in menu)
Scale Pixels
RelCoord 1
LayerCount 7
CreateLayer 1,1,Bkgrd
CreateLayer 2,1,Image
CreateLayer 3,1,Black
CreateLayer 4,1,Red
CreateLayer 5,0,Green
CreateLayer 6,1,Blue
CreateLayer 7,1,Text
Font Arial
FontStyle Italic
FontColor 0,64,128
Alpha 255
BrushAlpha 255
Crosshair 0
Layer 1
PenColor 255,255,255
BrushColor 255,255,255
FillBrush SolidBrush
Rectangle 0,0,983,743,0,0
Layer 2
; LoadImage 0,0,0,0,Centered,D:\Projects\Image Draw Projects\Photo\Palm Tree (CMYK).tif
LoadImage 500,100,400,640,BottomLeft,D:\Projects\Image Draw Project\Photo\Palm Tree (CMYK).tif
Crosshair 1
Layer 3
LineWeight 4
PenColor 0,0,0
LineXY 100,150,300,0
LineWeight 2
FillBrush None
AngleArcMode Arc
AngleArc 300,275,175,45,60
LineWeight 1
CurveTension 0
Polygon 100,100,200,200,200,-200,-400,0,End
RelCoord 0
FillBrush SolidBrush
BrushColor 0,64,128
Polygon 500,100,700,300,900,100,500,100,End
RelCoord 1
Dimension 100,150,400,150,48
Layer 4
LineStyle CenterLine
PenColor 255,0,0
LineXY 100,250,400,0
LineStyle SolidLine
Crosshair 0
PenColor 0,0,0
BrushColor 0,64,128
Alpha 128
BrushAlpha 128
Rectangle 400,300,400,300,0,0
Alpha 255
BrushAlpha 255
Crosshair 1
Layer 5
PenColor 0,255,0
LineXY 100,350,500,0
Layer 6
PenColor 0,0,255
LineXY 100,450,600,0
Layer 7
Text 64,640,Hello World\n \nHey whats up\nThis is the third line\nWhat, here's the Forth LINE!\nWhat FIFTH LINE!
; direct set custom colors (note can be added to any project file, I haven't auto incororated like Scale)
CustomColor1 190,200,214
CustomColor2 255,0,0
CustomColor3 0,255,0
CustomColor4 0,0,255
CustomColor5 225,225,240
CustomColor6 64,0,0
CustomColor7 0,0,64
CustomColor8 173,185,205
CustomColor9 182,129,254
CustomColor10 0,64,128
CustomColor11 188,158,117
CustomColor12 212,208,200
CustomColor13 79,105,144
CustomColor14 27,27,54
CustomColor15 77,96,130
CustomColor16 41,57,85
--------------------------------------------------------------------------------------------------------------------------