Changes between Version 6 and Version 7 of libpipi/examples
- Timestamp:
- 09/29/2008 10:27:14 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
libpipi/examples
v6 v7 3 3 A tileable brushed metal texture: 4 4 5 `pipi random:256x256 --gray --wrap --blur 10x0 -o image.png` 5 {{{ 6 pipi random:256x256 --gray --wrap --blur 10x0 -o image.png 7 }}} 6 8 7 9 [[Image(brushed.png)]] … … 9 11 A tileable neon texture: 10 12 11 `pipi random:128x128 --wrap --blur 10 --contrast .98 --tile 256x256 -o image.png` 13 {{{ 14 pipi random:128x128 --wrap --blur 10 --contrast .98 --tile 256x256 -o image.png 15 }}} 12 16 13 17 [[Image(neon.png)]] … … 15 19 A tileable, colourful cloth-like texture: 16 20 17 `pipi random:256x256 --wrap --boxblur 30 --autocontrast -o image.png` 21 {{{ 22 pipi random:256x256 --wrap --boxblur 30 --autocontrast -o image.png 23 }}} 18 24 19 25 [[Image(cloth.png)]] … … 21 27 Smooth an image while retaining sharp edges: 22 28 23 `pipi monaface.png --dup --median 2 --mean -o image.png` 29 {{{ 30 pipi monaface.png --dup --median 2 --mean -o image.png 31 }}} 24 32 25 33 [[Image(monaface.png)]] [[Image(smooth.png)]] … … 27 35 Apply a poster effect to any image: 28 36 29 `pipi lena.png --scale 4 --split --roll 3 --dither halftone:30:45 --roll 3 --dither halftone:30:75 --roll 3 --dither halftone:30:15 --combine --scale .25 -o image.png` 37 {{{ 38 pipi lena.png --scale 4 --split --roll 3 --dither halftone:30:45 --roll 3 --dither halftone:30:75 --roll 3 --dither halftone:30:15 --combine --scale .25 -o image.png 39 }}} 30 40 31 41 [[Image(lena.png)]] [[Image(poster.png)]]