Page 2 of 2
Re: Help obtaining a specific texture effect
Posted: 2011-12-02T11:25:19-07:00
by fmw42
Try this.
convert 1RaOUW.jpg \(tile.png -write mpr:tile +delete -clone 0 -tile mpr:tile -draw "color 0,0 reset" \) \
-compose modulate -define compose:args=10 -composite 1test.png
Re: Help obtaining a specific texture effect
Posted: 2011-12-04T18:03:02-07:00
by anthony
Slightly more refined, using some tricky distortion viewport handling to avoid much of the hassle of draw and mpr usage.
Code: Select all
convert 1RaOUW.jpg -set option:distort:viewport %G \( rose: -virtual-pixel tile -filter point -distort SRT 0 \)
-compose modulate -define compose:args=10 -composite test.png
Note the viewport global must be set outside the parenthesis, to set an output image size the same size as the input image. NOTE you can even add +x+y to the viewport setting to 'roll' the tile, or use the the distortion to rotate or otherwise modify the tile (remove
-filter point is you want to do that!)
Re: Help obtaining a specific texture effect
Posted: 2011-12-07T04:47:14-07:00
by Exilas
@all of you:
Goal accomplished! THANKS! To all of you for your helpful suggestions and time. Really appreciated!
Regards,
Exilas