On 2015-05-18 11:22, Antonio Roberts wrote:
open: /etc/pd/gem.conf: No such file or directory open: /home/hellocatfood/.pd/gem.conf: No such file or directory open: ./gem.conf: No such file or directory
are you sure there is no more output generated on the terminal? esp. when the (first) [pix_image] object is created you should see output like: "dylib loading file '/usr/lib/pd-extended/extra/Gem/gem_imageMAGICK.so'"
tried /usr/lib/pd-extended/extra/Gem/gem_imageTIFF.so and succeeded Image loading support: SGI jpeg tiff
which (together with the fact that it found /usr/lib/pd-extended/extra/Gem/gem_imageMAGICK.so) means that it failed to load the imageMAGICK plugin, which explains why it does not load PNGs.
you could simply check whehter the plugin has all the available libraries installed by running
$ ldd /usr/lib/pd-extended/extra/Gem/gem_imageMAGICK.so
| grep "not found"
if it returns *anything*, you will need to install the relevant packages (if they are not installed) and/or re-compile the plugin (if the libraries provided by vivid are incompatible).
fgamsdr IOhannes