Changes between Version 6 and Version 7 of libpipi/examples


Ignore:
Timestamp:
09/29/2008 10:27:14 PM (16 years ago)
Author:
Sam Hocevar
Comment:

better styles

Legend:

Unmodified
Added
Removed
Modified
  • libpipi/examples

    v6 v7  
    33A tileable brushed metal texture:
    44
    5  `pipi random:256x256 --gray --wrap --blur 10x0 -o image.png`
     5{{{
     6pipi random:256x256 --gray --wrap --blur 10x0 -o image.png
     7}}}
    68
    79[[Image(brushed.png)]]
     
    911A tileable neon texture:
    1012
    11  `pipi random:128x128 --wrap --blur 10 --contrast .98 --tile 256x256 -o image.png`
     13{{{
     14pipi random:128x128 --wrap --blur 10 --contrast .98 --tile 256x256 -o image.png
     15}}}
    1216
    1317[[Image(neon.png)]]
     
    1519A tileable, colourful cloth-like texture:
    1620
    17  `pipi random:256x256 --wrap --boxblur 30 --autocontrast -o image.png`
     21{{{
     22pipi random:256x256 --wrap --boxblur 30 --autocontrast -o image.png
     23}}}
    1824
    1925[[Image(cloth.png)]]
     
    2127Smooth an image while retaining sharp edges:
    2228
    23  `pipi monaface.png --dup --median 2 --mean -o image.png`
     29{{{
     30pipi monaface.png --dup --median 2 --mean -o image.png
     31}}}
    2432
    2533[[Image(monaface.png)]] [[Image(smooth.png)]]
     
    2735Apply a poster effect to any image:
    2836
    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{{{
     38pipi 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}}}
    3040
    3141[[Image(lena.png)]] [[Image(poster.png)]]