Generate random noise over specific colors
Posted: 2018-12-03T12:36:38-07:00
I'm using Imagemagick 7.0.8-14 on ubuntu 16.04
I would like to generate random noise:
but above specific colors, for instance noise over pastel colors, or reddish colors, instead of the usual RGB we get from the above command. Is there a way to do that? Apparently Random creates noise instead of adding it, so I tried with Uniform
but I got a fully red picture with no noise
I would like to generate random noise:
Code: Select all
magick -size 100x100 xc: +noise Random random.png
Code: Select all
magick -size 100x100 xc:red +noise Uniform random.png