StephenP wrote:Hi all,
Just wondering if there's any sort of operator that can take a photo, then change it to appear as though it was done in spray paint.
Example -
http://www.caption.it/create/spraypaint.php
Thanks,
Stephen
Perhaps something like this:
Bricks:
Lena:
Composite:
convert bricks_tilable2.jpg \( -size 256x256 xc:mediumblue \) \
\( lena.jpg -colorspace gray -negate \) -compose multiply -composite \
lena_bricks.jpg
OR
Lena:
Composite:
convert bricks_tilable2.jpg \( -size 256x256 xc:mediumblue \) \
\( lena2.jpg -resize 256x256 -colorspace gray -negate \) -compose multiply -composite \
lena_bricks4.jpg
OR
Lena:
Composite:
convert bricks_tilable2.jpg \( -size 256x256 xc:mediumblue \) \
\( lena2.jpg -colorspace gray -negate -background black -gravity center -extent 256x256 \) -compose multiply -composite \
lena_bricks3.jpg
OR for more color, remove the -compose multiply
Lena:
Composite:
convert bricks_tilable2.jpg \( -size 256x256 xc:mediumblue \) \
\( lena.jpg -colorspace gray -negate \) -composite \
lena_bricks.jpg
OR with slightly less color using xc:navy as a better compromise
Composite:
convert bricks_tilable2.jpg \( -size 256x256 xc:navy \) \
\( lena.jpg -colorspace gray -negate \) -composite \
lena_bricks.jpg