i'm would like to create an effect that looks like this:
http://www.entheosweb.com/images/photoshop/canvas_2.jpg
i cant seem to understand how to do that on image magick
hope you can help me with this one
regards,
sonusdream
canvas texture effect
i found this article to manually create a canvas effect using photoshop. i'm trying to follow the instructions using image magick but i cant seem to make it work.
http://www.insidegraphics.com/photoshop ... igning.asp
hope you can help me with this
regards,
sonusdream
http://www.insidegraphics.com/photoshop ... igning.asp
hope you can help me with this
regards,
sonusdream
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
That is using an 'overlay' alpha composition on a grey texture of the sort you describe.
IM Examples uses this for highlights, on shaped images, but it can do what you request as well...
Hmmm using builtins.
The first line is just to adjust the colors of the granite: builtin.
The second overlays that texture onto the rose image on that texture.
If you use "composite" instead of "convert" you can also tile a pre-prepared texture over the image.
IM Examples uses this for highlights, on shaped images, but it can do what you request as well...
Hmmm using builtins.
Code: Select all
convert granite: -normalize -fill '#888' -colorize 80% \
rose: +swap -compose overlay -composite rose_textured.jpg
The second overlays that texture onto the rose image on that texture.
If you use "composite" instead of "convert" you can also tile a pre-prepared texture over the image.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
No problem. Just remember that the unchanged color should be a perfect mid-tone grey.
EG #7fff7fff7fff.
You can get a good start on a corse fabric texture using...
http://www.cit.gu.edu.au/~anthony/icons ... /linen.gif
You can adjust it using the same techiques I used for the granite image
other interesting texture I have in my old icon library include...
http://www.cit.gu.edu.au/~anthony/icons ... dstone.gif
http://www.cit.gu.edu.au/~anthony/icons ... n_soup.jpg
http://www.cit.gu.edu.au/~anthony/icons ... fossil.png
http://www.cit.gu.edu.au/~anthony/icons ... ipples.jpg
http://www.cit.gu.edu.au/~anthony/icons ... curves.xpm
http://www.cit.gu.edu.au/~anthony/icons ... trails.xpm
you get the idea.
I have added a tiled version to the IM Examples, Digital Photos 'Cookbook'.
http://www.cit.gu.edu.au/~anthony/graph ... /#cookbook
EG #7fff7fff7fff.
You can get a good start on a corse fabric texture using...
http://www.cit.gu.edu.au/~anthony/icons ... /linen.gif
You can adjust it using the same techiques I used for the granite image
other interesting texture I have in my old icon library include...
http://www.cit.gu.edu.au/~anthony/icons ... dstone.gif
http://www.cit.gu.edu.au/~anthony/icons ... n_soup.jpg
http://www.cit.gu.edu.au/~anthony/icons ... fossil.png
http://www.cit.gu.edu.au/~anthony/icons ... ipples.jpg
http://www.cit.gu.edu.au/~anthony/icons ... curves.xpm
http://www.cit.gu.edu.au/~anthony/icons ... trails.xpm
you get the idea.
I have added a tiled version to the IM Examples, Digital Photos 'Cookbook'.
http://www.cit.gu.edu.au/~anthony/graph ... /#cookbook
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/