I was able to compile eos-movrec-0.3.0_beta in fedora 35. It needed both libgphoto2-2.5.29 (current version) and libgphoto2-devel-2.5.29 in order to build. (probably should be mentioned in the INSTALL file. After build and make it produced a runnable version. When run without a camera present and on, it gave a segmentation error and did a core dump. With a camera present and on, it ran fine.
Thank you. That worked just fine! I appreciate your help. John
Hi, I have downloaded the current version of freebasic, and the error in the subject stops compilation. It seems that window9 is the source. Fedora 35 has webkitgtk-4.0 and keeps removing the obsolete version when it updates. I cannot seem to find a way to get window9 to work. I am using a 6 month old version of window9 and am trying update. Has webkitgtk been updated to a more current version? Thanks, John
This test code ran without an error shown in the terminal, and gave the success message. Thanks for your help. I will keep looking. John
No , that was leftover from when I chopped unnecessary lines out to shorten the example. In my program I free up the image and then add a new one to the button. In the first example I get the error without freeing up anything. I did run into this (Basically: after calling FREE_IMAGE, the image no longer exists and any access to this image causes an error, even if it is displayed in the gadget.) in my program. On the last page of my images if there were buttons that should have been blank, they displayed...
I can give you two examples. I think the first is from the window9 documentation. Include "window9.bi" Var hbitmap=Load_image("IMG_0001.JPG") hbitmap=Resize_image( hbitmap,800,600) OpenWindow("",1600,10,800,600) ImageGadget(1,10,10,100,100,hbitmap) 'Free_Image(hbitmap) 'ImageGadget(2,110,10,800,600,hbitmap) Do var ev=WaitEvent() If ev=EventClose Then End Loop The above gives this error: (one_image:6978): GdkPixbuf-CRITICAL **: 07:31:01.778: gdk_pixbuf_scale_simple: assertion 'GDK_IS_PIXBUF (src)'...
Hi Stabud, I pretty much have it all working properly with your suggestions. thank you. I have one question. When I run this program, I get an error message in the terminal for each jpg loaded. I think I asked this question on the freebasic forums and did not get an answer that I was able to implement. Hopefully I didn't ask it of you before. I would hate to repeat myself. Here is the error message I get, and it doesn't seem to affect anything, but I would like to know how to get rid of it. (320x240-JPG_image_renamer2:15597):...
Hi Stabud, Thank you for your information. It has taken me a while to work through this, but I have it working now, and understand how it works more thoroughly. I really appreciate the help! John