Problem Planer Raw Image @ ver. 6.4.2 and 6.4.3
Posted: 2008-09-18T04:49:45-07:00
To examine the treatment of RGB Planer Data, I tested as follows.
(1)
convert source.tif -depth 16 -interlace plane RGB:test1.raw
convert source.tif -depth 16 -interlace partition RGB:test2.raw
cat test2.{R,G,B} > test2_cat.raw
cmp test1.raw test2_cat.raw
--> test1.raw and test2_cat.raw are same. (No problem)
(2)
convert -depth 16 -size XxY -interlace plane test2_cat.raw -depth 16 -interlace partition RGB:test3.raw
cmp test2.R test3.R
--> test2.R and test3.R are same.
cmp test2.G test3.G
--> test2.G and test3.G are differ. (test3.G shifts behind 1 line.)
cmp test2.B test3.B
--> test2.B and test3.B are differ. (test3.B shifts behind 2 lines. and test3.B's last 2 lines are repeated.)
Is this bug of Coder rgb.c ?
(1)
convert source.tif -depth 16 -interlace plane RGB:test1.raw
convert source.tif -depth 16 -interlace partition RGB:test2.raw
cat test2.{R,G,B} > test2_cat.raw
cmp test1.raw test2_cat.raw
--> test1.raw and test2_cat.raw are same. (No problem)
(2)
convert -depth 16 -size XxY -interlace plane test2_cat.raw -depth 16 -interlace partition RGB:test3.raw
cmp test2.R test3.R
--> test2.R and test3.R are same.
cmp test2.G test3.G
--> test2.G and test3.G are differ. (test3.G shifts behind 1 line.)
cmp test2.B test3.B
--> test2.B and test3.B are differ. (test3.B shifts behind 2 lines. and test3.B's last 2 lines are repeated.)
Is this bug of Coder rgb.c ?