I did a BinDeps.debug("Gtk"):
If this helps?
julia> BinDeps.debug("Gtk")
INFO: Reading build script...
The package declares 1 dependencies.
- Library Group "gtk" (satisfied by HB)
- Library "glib"
- Satisfied by:
- Homebrew Bottles glib at
/Users/will/.julia/v0.3/Homebrew/deps/usr/lib/libglib-2.0.0.dylib
- Providers:
- Homebrew Bottles glib
- Library "gobject"
- Satisfied by:
- Homebrew Bottles gtk+3 at
/Users/will/.julia/v0.3/Homebrew/deps/usr/lib/libgobject-2.0.0.dylib
- Providers:
- Homebrew Bottles gtk+3
- Library "gtk"
- Satisfied by:
- Homebrew Bottles gtk+3 at
/Users/will/.julia/v0.3/Homebrew/deps/usr/lib/libgtk-3.dylib
- Providers:
- Homebrew Bottles gtk+3
- Library "gdk"
- Satisfied by:
- Homebrew Bottles gtk+3 at
/Users/will/.julia/v0.3/Homebrew/deps/usr/Cellar/gtk+3/3.12.2/lib/libgdk-3.0.dylib
- Providers:
- Homebrew Bottles gtk+3
- Library "gdk_pixbuf"
- Satisfied by:
- Homebrew Bottles gdk-pixbuf at
/Users/will/.julia/v0.3/Homebrew/deps/usr/lib/libgdk_pixbuf-2.0.0.dylib
- Providers:
- Homebrew Bottles gdk-pixbuf
- Library "gio"
- Satisfied by:
- Homebrew Bottles glib at
/Users/will/.julia/v0.3/Homebrew/deps/usr/lib/libgio-2.0.0.dylib
- Providers:
- Homebrew Bottles glib
On Tuesday, October 14, 2014 11:11:45 PM UTC+1, Jameson wrote:
>
> Does it work with a simpler image format like jpg or bmp? It's possible
> you don't have a gdk-pixbuf-tiff plugin installed
>
> On Tuesday, October 14, 2014, will ship <[email protected]
> <javascript:>> 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
>>
>>