You can check the gtk branch of ImageView, if it's helpful. --Tim
On Tuesday, October 14, 2014 02:58:43 PM will ship wrote: > Could someone please point out the error of my ways: > > trying to load an image into a GTk window: > > this just produces a grey window: > > using Gtk.ShortNames, Base.Graphics > win=@Window() > im3=@Image() > setproperty!(im3, :set_from_file,"mandrill.tiff") > push!(win,im3) > showall(win) > > > > > and this produces window but with a small white box and red cross: > > using Gtk.ShortNames, Base.Graphics > win=@Window() > im3=@Image(filename=mandrill.tiff) > push!(win,im3) > showall(win) > > (I have had no luck using Imageview) > > Thanks in advance > > Will
