LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

ppmforge

Generate fractal terrain and cloud images

TLDR

Generate fractal terrain
$ ppmforge > [terrain.ppm]
copy
Generate clouds
$ ppmforge -clouds > [clouds.ppm]
copy
Generate night view
$ ppmforge -night > [night.ppm]
copy
Specify dimensions
$ ppmforge -width [512] -height [512] > [output.ppm]
copy

SYNOPSIS

ppmforge [options]

DESCRIPTION

ppmforge generates fractal-based images using procedural algorithms, producing realistic terrain, cloud, and planetary surface images. The terrain mode creates elevation-colored landscapes with water, while the cloud mode generates atmospheric patterns.A random seed parameter allows reproducible generation, and mesh size controls the level of fractal detail. The night mode creates star field images. Output dimensions are configurable independently for width and height. Part of the Netpbm toolkit.

PARAMETERS

-clouds

Generate cloud image.
-night
Generate night view.
-width N
Output width.
-height N
Output height.
-seed N
Random seed.
-mesh N
Mesh size.

INSTALL

sudo apt install netpbm
copy
sudo dnf install netpbm
copy
sudo pacman -S netpbm
copy
sudo apk add netpbm
copy
sudo zypper install netpbm
copy
brew install netpbm
copy
nix profile install nixpkgs#netpbm
copy

CAVEATS

Procedural generation. Part of Netpbm suite.

HISTORY

ppmforge was created as part of Netpbm for fractal image generation.

SEE ALSO

ppm(5), ppmplasma(1)

Copied to clipboard
Kai