phil11 Posted January 19, 2008 Posted January 19, 2008 Hello, i tried to create some graphics over a picture set as background set the GuiCtrlSetState(-1,$GUI_DISABLE) for the pic so that allows to put some controlls visible on the pic, but the graphics still stay invisible any idea how to do this ? thank you
PsaltyDS Posted January 19, 2008 Posted January 19, 2008 Hello,i tried to create some graphics over a picture set as backgroundset the GuiCtrlSetState(-1,$GUI_DISABLE) for the picso that allows to put some controlls visible on the pic,but the graphics still stay invisible any idea how to do this ?thank youPost a short reproducer script to show the symptoms. Needn't be more than about 20 lines, I would think. It will give potential help something to look at. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
phil11 Posted January 19, 2008 Author Posted January 19, 2008 Post a short reproducer script to show the symptoms. Needn't be more than about 20 lines, I would think. It will give potential help something to look at. $c1=GUICreate("child 1", 355, 256, 81, 66,$WS_POPUPWINDOW) DllCall("user32.dll", "int", "SetParent", "hwnd", WinGetHandle($c1), "hwnd", WinGetHandle($LoDOv)) GUISetBkColor(0x000000) Global $Pic2 = GUICtrlCreatePic(".\images\mypic.jpg", 0, 0, 340, 240, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GuiCtrlSetState(-1,$GUI_DISABLE) GUISetState(@SW_SHOW) $graph = GuiCtrlCreateGraphic(350, 250, 1,1) GUICtrlSetGraphic(-1,$GUI_GR_COLOR, 0xffff00) GUICtrlSetGraphic(-1,$GUI_GR_ELLIPSE, -350,-305,360,360) GUICtrlSetGraphic(-1,$GUI_GR_ELLIPSE, -290,-245,240,240) GUICtrlSetGraphic(-1,$GUI_GR_ELLIPSE, -230,-185,120,120) GUICtrlSetState(-1, $GUI_GR_REFRESH) GUISetState(@SW_SHOW)
odklizec Posted January 30, 2008 Posted January 30, 2008 Hello phil11! Did you solve this issue? Because I have exactly the same problem. I want to draw something above Pic object. I see filling the Graphic object, but it disappears right after end of GUICtrlSetGraphic operation and I see only the Pic object containing the image.
phil11 Posted January 30, 2008 Author Posted January 30, 2008 Hi odklizec,no, i couldn't i asked for more over here Graphic over Giftill now ... no answer only thing i know ... picture stays over graphic .... but at the opposite, ... to "delete" (refresh) graphic, i used black picif possible, still looking for thanks
odklizec Posted January 30, 2008 Posted January 30, 2008 OK, it looks we need to help ourselves. At first, you have to remove the first GUISetState(@SW_SHOW) call from your script. I found that if you call it two times like in your example, the newly drawn graphics is just not correctly refreshed after its creation. If you overlap the gui window with another window (or just drag it outside the visible screen), the circles will be displayed. However, still under the image. Remove the first call of GUISetState and the circles will be drawn right away. Here is my test sample: #include <GUIConstants.au3> $c1=GUICreate("graphics over image test", 320, 240, 0, 0,$WS_SIZEBOX+$WS_SYSMENU) GUISetBkColor(0x000000) $n=GUICtrlCreatePic(@WindowsDir & "\Soap Bubbles.bmp",80,55, 160,120) GuiCtrlSetState(-1,$GUI_DISABLE) $graph = GuiCtrlCreateGraphic(350, 250, 1,1) GUICtrlSetGraphic(-1,$GUI_GR_COLOR, 0xffff00) GUICtrlSetGraphic(-1,$GUI_GR_ELLIPSE, -350,-305,360,360) GUICtrlSetGraphic(-1,$GUI_GR_ELLIPSE, -290,-245,240,240) GUICtrlSetGraphic(-1,$GUI_GR_ELLIPSE, -230,-185,120,120) GUICtrlSetState(-1, $GUI_GR_REFRESH) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Sleep(20) WEnd Can anyone knowledgeable please look at this sample and tell us if it's OK or if there is something wrong with script (or a bug in Autoit)?
odklizec Posted January 31, 2008 Posted January 31, 2008 Anyone please? Is there a bug/something missing in the above script or it's a GUICtrlSetGraphic/GUICtrlCreatePic bug? Where are all AutoIt experts?
ResNullius Posted January 31, 2008 Posted January 31, 2008 Anyone please? Is there a bug/something missing in the above script or it's a GUICtrlSetGraphic/GUICtrlCreatePic bug? Where are all AutoIt experts? I think you'll find this thread/UDF helpful Tobias Graphic Functions
odklizec Posted February 1, 2008 Posted February 1, 2008 Thanks for info! So this inability of drawing graphics over the image is a "feature" Good to know that! I will give a try to the Tobias graphic library.
phil11 Posted February 1, 2008 Author Posted February 1, 2008 Thanks for link ResNullius, i don't know if you got same error ? : TobiasGraphicFunctions.au3 (554) : ==> Can not redeclare a constant Const $tagGDIPIMAGECODECINFO = "byte CLSID[16];byte FormatID[16];ptr CodecName;ptr DllName;ptr FormatDesc;ptr FileExt;ptr MimeType;dword Flags;dword Version;dword SigCount;dword SigSize;ptr SigPattern;ptr SigMask" Const ^ ERRORhope we'll find some way ... thank you
BrettF Posted February 1, 2008 Posted February 1, 2008 Thanks for link ResNullius,i don't know if you got same error ? :hope we'll find some way ...thank youIf the constant is declared in the script, either an include for those functions (the UDF) then just comment out the lines. DO NOT do it to AutoIt include files. Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
andybiochem Posted February 2, 2008 Posted February 2, 2008 Hi odklizec,no, i couldn't i asked for more over here Graphic over Giftill now ... no answer only thing i know ... picture stays over graphic .... but at the opposite, ... to "delete" (refresh) graphic, i used black picif possible, still looking for thanksHi Phil11,Sorry, I abandonned that thread since the other guys went totally OT.could you put some code or explain what you mean with "box" ..is this a child window ? or .. ?The 'box' is simply a coloured box within the gif. Nothing to do with any AUTOIT functions.Have a look at the gif with the grey box in the first post of the other thread....the grey is litterally part of the image.I haven't discovered a fix for this yet problem (yet) - Table UDF - create simple data tables - Line Graph UDF GDI+ - quickly create simple line graphs with x and y axes (uses GDI+ with double buffer) - Line Graph UDF - quickly create simple line graphs with x and y axes (uses AI native graphic control) - Barcode Generator Code 128 B C - Create the 1/0 code for barcodes. - WebCam as BarCode Reader - use your webcam to read barcodes - Stereograms!!! - make your own stereograms in AutoIT - Ziggurat Gaussian Distribution RNG - generate random numbers based on normal/gaussian distribution - Box-Muller Gaussian Distribution RNG - generate random numbers based on normal/gaussian distribution - Elastic Radio Buttons - faux-gravity effects in AutoIT (from javascript)- Morse Code Generator - Generate morse code by tapping your spacebar!
phil11 Posted February 5, 2008 Author Posted February 5, 2008 Hi Andy, thanks, .. hope you or somebody else find some fix
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now