pamfixtrunc, pamfix, pamvalidate: add pages (#12406)

* pamfixtrunc, pamfix, pamvalidate: add pages

---------

Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Juri Dispan
2024-03-24 09:45:01 +01:00
committed by GitHub
parent c2b3a2a880
commit 8b9720a256
3 changed files with 34 additions and 0 deletions

17
pages/common/pamfix.md Normal file
View File

@@ -0,0 +1,17 @@
# pamfix
> Fix errors in PAM, PBM, PGM and PPM files.
> See also: `pamfile`, `pamvalidate`.
> More information: <https://netpbm.sourceforge.net/doc/pamfix.html>.
- Fix a Netpbm file that is missing its last part:
`pamfix -truncate {{path/to/corrupted.ext} > {{path/to/output.ext}}`
- Fix a Netpbm file where pixel values exceed the image's `maxval` by lowering the offending pixels' values:
`pamfix -clip {{path/to/corrupted.ext}} > {{path/to/output.ext}}`
- Fix a Netpbm file where pixel values exceed the image's maxval by increasing it:
`pamfix -changemaxval {{path/to/corrupted.pam|pbm|pgm|ppm}} > {{path/to/output.pam|pbm|pgm|ppm}}`