|
Post by alexfish on Dec 30, 2022 20:14:04 GMT 1
Yes it is, but I have more Raspies lying around. Well off course, to test the server. So It's a bit messy around here. Sorry. PS. The Server in the steering cabin, connected to the AIS, does not even have a bacon installed on it. It only has the executables. Neither does it have a screen, or a keyboard or a mouse. Everything is done via ssh. Hi Rik No need to be sorry We All make mistakes , and in this case I did find other Errors, hopeful now fixed BR Alex
|
|
|
Post by alexfish on Dec 31, 2022 16:20:17 GMT 1
Puzzled By Sunday See this Pixbuf Circle Attachments:
|
|
|
Post by alexfish on Dec 31, 2022 21:12:35 GMT 1
hug imager Updated to imager5 RE First Post
Compile the GuiDesigner first. in archive simple pixbuf image demo similar to the one above
Tutorial 'how to' starts after New Year
BR Alex
|
|
|
Post by alexfish on Jan 1, 2023 21:22:08 GMT 1
Hi All Found a few bugs , also Fixing FONT in SEDIT now got the WINDOWFRAME + the DESIGNER working in the GUI DESIGNER , REF: the attach widgets Assume final update to 5.1 next week, examples will be posted on the Tutorial (assume just after the update) BR Alex Picky of what I mean Attachments:
|
|
|
Post by alexfish on Jan 2, 2023 2:31:44 GMT 1
Hi All and to some final testing esp pixbuf & subpixbuf two bits of code and then a picky INCLUDE "includegtk.bac"
window = WINDOW("Test",600,600)
image = PIXNEW(600,600) ATTACH(window,image,3,3)
circ = PIXBUF_NEW(600,600)
RGBA_SET_COLOR$("#FF00FF","AF") DP_CIRCLE(circ,600,600,1) rect = GETPIX(circ,100,100,200,200)
RGBA_SET_COLOR$("#FF0000","AF") DP_CIRCLE(rect,200,200,1) PAINTPIX(image,circ) DISPLAY INCLUDE "includegtk.bac"
window = WINDOW("Test",600,600)
image = PIXNEW(600,600) ATTACH(window,image,3,3)
circ = PIXBUF_NEW(600,600)
RGBA_SET_COLOR$("#FF00FF","AF") DP_CIRCLE(circ,600,600,1) rect = GETPIX(circ,100,100,200,200)
RGBA_SET_COLOR$("#FF0000","AF") DP_CIRCLE(rect,200,200,1) PAINTPIX(image,rect) DISPLAY Those Commands will be in the next updated imager5 BR Alex Attachments:
|
|
|
Post by alexfish on Jan 2, 2023 4:09:04 GMT 1
And Then To Best ever PixBuf Circles again the new commands will be in next update window = WINDOW("Test",606,606)
image = PIXNEW(600,600) ATTACH(window,image,3,3)
circ = PIXBUF_NEW(1200,1200) PIXFILL(circ,0x000000FF) RGBA_SET_COLOR$("#FF00FF","AF") DP_CIRCLE(circ,1200-6,1200-6,1) RGBA_SET_COLOR$("#0000FF","AF") DP_CIRCLE(circ,1200-6,1200-6,0)
rect = GETPIX(circ,200,200,400,400)
RGBA_SET_COLOR$("#FF0000","FF") DP_CIRCLE(rect,400-6,400-6,1) newpix = PICSCALE(circ,600,600)
PAINTPIX(image,newpix) g_object_unref(newpix) g_object_unref(rect) g_object_unref(circ) DISPLAY UPDATE: IF want to preserve alpha , need two separate buffers use, COMPOSIT the two circles ,second Picky and yes I just found that out so here we go INCLUDE "includegtk.bac"
window = WINDOW("Test",606,606)
image = PIXNEW(600,600) ATTACH(window,image,3,3)
circ = PIXBUF_NEW(600,600) rect = PIXBUF_NEW(200,200) PIXFILL(circ,0x000000FF) RGBA_SET_COLOR$("#FF00FF","FF") DP_CIRCLE(circ,600-6,600-6,1)
RGBA_SET_COLOR$("#0000FF","40") DP_CIRCLE(rect,200-6,200-6,1) newpix = PICSCALE(rect,100,100,2) COMPOSIT(newpix,circ,100,100)
PAINTPIX(image,circ) g_object_unref(newpix) g_object_unref(rect) g_object_unref(circ) DISPLAY Time For zzzzz Updated Lib , when I wake up finding bugs makes one very sleepy BR Alex Attachments:
|
|
|
Post by alexfish on Jan 2, 2023 14:49:38 GMT 1
Still Sleeepy Also been busy with Docs BR Alex Picky Attachments:
|
|
|
Post by alexfish on Jan 2, 2023 18:17:05 GMT 1
Hi All
Basic doc.html , based on new widgets and commands Basic means Very basic , first attempt for a few Err
SEE FIRST POST BR Alex
|
|
|
Post by alexfish on Jan 2, 2023 20:23:06 GMT 1
Hi All
imager5.1 Released FIRST POST, also post Link to the Tutorial (can get latest DOCS from there
BR Alex
|
|