1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:53:34 +02:00

ppmtopjxl, ppmwheel, ppmtoapplevol: add pages (#15355)

* fix ci

* ppmtopjxl, ppmwheel, ppmtoapplevol: add pages
This commit is contained in:
Juri Dispan 2024-12-28 13:44:56 +01:00 committed by GitHub
parent 86f0759fc9
commit 15949a7e47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# ppmtoapplevol
> Convert a PPM image into an Apple volume label image.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoapplevol.html>.
- Convert a PPM image into an Apple volume label image:
`ppmtoapplevol {{path/to/image.ppm}} > {{path/to/output}}`

20
pages/common/ppmtopjxl.md Normal file
View file

@ -0,0 +1,20 @@
# ppmtopjxl
> Convert a PPM image into an HP PaintJet XL PCL file.
> More information: <https://netpbm.sourceforge.net/doc/ppmtopjxl.html>.
- Convert a PPM image into an PJXL file:
`ppmtopjxl {{path/to/image.ppm}} > {{path/to/output.pjxl}}`
- Resize the input image:
`ppmtopjxl -xsize {{10cm}} -ysize {{5cm}} {{path/to/image.ppm}} > {{path/to/output.pjxl}}`
- Shift the input image:
`ppmtopjxl -xshift {{10pt}} -yshift {{5pt}} {{path/to/image.ppm}} > {{path/to/output.pjxl}}`
- Do not use the normal TIFF 4.0 compression method:
`ppmtopjxl -nopack {{path/to/image.ppm}} > {{path/to/output.pjxl}}`

16
pages/common/ppmwheel.md Normal file
View file

@ -0,0 +1,16 @@
# ppmwheel
> Generate a PPM image of a color wheel.
> More information: <https://netpbm.sourceforge.net/doc/ppmwheel.html>.
- Generate a color wheel of type `Ppmcirc`:
`ppmwheel {{diameter}} > {{path/to/output.ppm}}`
- Generate a color wheel of type `Hue-value`:
`ppmwheel -huevalue {{diameter}} > {{path/to/output.ppm}}`
- Generate a color wheel of type `Hue-saturation`:
`ppmwheel -huesaturation {{diameter}} > {{path/to/output.ppm}}`