Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
RetroJ
Posts: 108 Joined: 2006-10-25T08:12:50-07:00
Post
by RetroJ » 2006-11-05T12:16:35-07:00
I want to separate and recombine an image via YUV colorspace. Separation, I have:
Code: Select all
convert cookie.jpg -colorspace yuv -separate cookie-yuv-%02d.png
=>
Now how do I recombine? I tried the following, but it is obviously not right.
Code: Select all
convert cookie-yuv-00.png cookie-yuv-01.png cookie-yuv-02.png -colorspace yuv -combine cookie-recombined.png
anthony
Posts: 8883 Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia
Post
by anthony » 2006-11-05T21:14:31-07:00
Sounds like something that still needs to be expanded on in IM.
prehaps you need to report this to the developers forum.