A small image (200x50) full of random color dots
1000,250,1,3
rand 0,255


The previous image resized to 1000x250, causing the dots to become solid color squares
+resize 1000,250

a blur filter has been applied coloring the edges, also the image quality has been greatly reduced, as the higher quality served no purpose for human eyes
+blur[-1] 3


I used the following code in Win 10 PowerShell to create the above images.

gmic.exe `
  input 200,50,1,3 `
  rand 0,255 `
  +resize 1000,250 `
  +blur[-1] 3 `
  output gmic_rand.png `
  output gmic_rand.jpg

G'MIC
RAND



Similar Commands

If rand doesn't quite do the trick, I would look at fill (especially for any tiling needs) or the various noise commands (noise, noise_hurl, noise_perlin, and/or noise_poissondisk) if I were interested in some form of static.


more
ALPHA CHANNEL
command line image manipulations

© copyright 2020 Brett Paufler
paufler.net@gmail.com