tags:

views:

31

answers:

1

I am trying to update a GtkImage with gtk_image_set_from_file(), but how can I check if this image exists?

A: 

g_file_test beforehand or use gdk_pixbuf_load_from_file + gtk_image_set_from_pixbuf

ptomato
Got it thanks........
PP