[resolved] potential bug -draw color floodfill IM 7.0.5.4 Q16
Posted: 2017-04-17T15:58:56-07:00
Reference: viewtopic.php?f=1&t=31782
Using Athony's example with the gold frame at http://www.imagemagick.org/Usage/thumbn ... ame_joints, I find that it works fine in IM 6.9.8.3 Q16, but has colored specks in the frame in the result for IM 7.0.5.4 HDRI Q16 (Mac OSX SnowLeopard). This first appears in the code after the first -draw "color 1,0 floodfill", when I put +write tmpX.png in various places. But just doing a simple image floodfill does not show this issue. So I think it is in combination with the tiling over the frame.
Input:
IM 6
IM 7
Using Athony's example with the gold frame at http://www.imagemagick.org/Usage/thumbn ... ame_joints, I find that it works fine in IM 6.9.8.3 Q16, but has colored specks in the frame in the result for IM 7.0.5.4 HDRI Q16 (Mac OSX SnowLeopard). This first appears in the code after the first -draw "color 1,0 floodfill", when I put +write tmpX.png in various places. But just doing a simple image floodfill does not show this issue. So I think it is in combination with the tiling over the frame.
Input:
IM 6
Code: Select all
convert thumbnail.gif -write mpr:image +delete \
goldthin_top.png -write mpr:edge_top +delete \
goldthin_btm.png -rotate 180 -write mpr:edge_btm +delete \
\
mpr:image -alpha set -bordercolor none \
-compose Dst -frame 25x25+25 -compose over \
\
-transverse -tile mpr:edge_btm \
-draw 'color 1,0 floodfill' -transpose -draw 'color 1,0 floodfill' \
-transverse -tile mpr:edge_top \
-draw 'color 1,0 floodfill' -transpose -draw 'color 1,0 floodfill' \
\
mpr:image -gravity center -composite -scale 400% frame_gold6.png
IM 7
Code: Select all
magick thumbnail.gif -write mpr:image +delete \
goldthin_top.png -write mpr:edge_top +delete \
goldthin_btm.png -rotate 180 -write mpr:edge_btm +delete \
\
mpr:image -alpha set -bordercolor none \
-compose Dst -frame 25x25+25 -compose over \
\
-transverse -tile mpr:edge_btm \
-draw 'color 1,0 floodfill' -transpose -draw 'color 1,0 floodfill' \
-transverse -tile mpr:edge_top \
-draw 'color 1,0 floodfill' -transpose -draw 'color 1,0 floodfill' \
\
mpr:image -gravity center -composite -scale 400% frame_gold7.png