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
Help obtaining a specific texture effect
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: Help obtaining a specific texture effect
Slightly more refined, using some tricky distortion viewport handling to avoid much of the hassle of draw and mpr usage.
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!)
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
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: Help obtaining a specific texture effect
@all of you:
Goal accomplished! THANKS! To all of you for your helpful suggestions and time. Really appreciated!
Regards,
Exilas
Goal accomplished! THANKS! To all of you for your helpful suggestions and time. Really appreciated!
Regards,
Exilas