Code Comments
Programming Forum and web based access to our favorite programming groups.In a script I have: java MNISTtoPPM "testImg" "testLbl" $1 | convert - GIF:- | xv - The output from the java program that takes 3 arguments are piped to: convert - GIF:- | xv - but when I run it like: ./viewtest 2 I get: convert: no decode delegate for this image format `/tmp/magick-XXPYD6zc'. So something goes wrong with the imagemagic convert command. How should: | convert - GIF:- | xv - be understood and why the error?
Post Follow-up to this messageIn <fruda7$bu1$1@news.net.uni-c.dk> saneman <asdfsdf@asd.com> writes: > In a script I have: > java MNISTtoPPM "testImg" "testLbl" $1 | convert - GIF:- | xv - At a guess, it runs a java program which produces an image on the standard output, which is then fed to the "convert" program which manioulates the image into the GIF format, and then feeds that image into the "xv" program for viewing. > convert: no decode delegate for this image format `/tmp/magick-XXPYD6zc'. > So something goes wrong with the imagemagic convert command. How should: Sounds like ImageMagick doesn't know how to interpret the image. Perhaps it needs the right codec? -- John Gordon A is for Amy, who fell down the stairs gordon@panix.com B is for Basil, assaulted by bears -- Edward Gorey, "The Gashlycrumb Tinies"
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.