For Programmers: Free Programming Magazines  


Home > Archive > Unix Programming > March 2008 > What does this script do?









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author What does this script do?
saneman

2008-03-20, 7:15 pm

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?
John Gordon

2008-03-20, 7:15 pm

In <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"

Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com