mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
pngcheck: add Dutch translation and fix placeholder (#13648)
This commit is contained in:
parent
3e9b5034b3
commit
4d4a408b53
3 changed files with 54 additions and 5 deletions
28
pages.nl/common/pngcheck.md
Normal file
28
pages.nl/common/pngcheck.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# pngcheck
|
||||
|
||||
> Gedetailleerde informatie over en verifiëren van PNG-, JNG- en MNG-bestanden.
|
||||
> Meer informatie: <http://www.libpng.org/pub/png/apps/pngcheck.html>.
|
||||
|
||||
- Toon een samenvatting van een afbeelding (breedte, hoogte, en kleurdiepte):
|
||||
|
||||
`pngcheck {{pad/naar/afbeelding.png}}`
|
||||
|
||||
- Toon informatie over een afbeelding met gekleurde ([c]) uitvoer:
|
||||
|
||||
`pngcheck -c {{pad/naar/afbeelding.png}}`
|
||||
|
||||
- Toon gedetailleerde ([v]) informatie over een afbeelding:
|
||||
|
||||
`pngcheck -cvt {{pad/naar/afbeelding.png}}`
|
||||
|
||||
- Ontvang een afbeelding van `stdin` en toon gedetailleerde informatie:
|
||||
|
||||
`cat {{pad/naar/afbeelding.png}} | pngcheck -cvt`
|
||||
|
||||
- Zoek ([s]) naar PNG-bestanden binnen een specifiek bestand en toon informatie:
|
||||
|
||||
`pngcheck -s {{pad/naar/afbeelding.png}}`
|
||||
|
||||
- Zoek naar PNG's binnen een ander bestand en e[x]tracteer ze:
|
||||
|
||||
`pngcheck -x {{pad/naar/afbeelding.png}}`
|
21
pages.nl/linux/pngcheck.md
Normal file
21
pages.nl/linux/pngcheck.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# pngcheck
|
||||
|
||||
> Forensische tool voor het valideren van de integriteit van PNG-gebaseerde (PNG, JNG, MNG) afbeeldingsbestanden.
|
||||
> Kan ook ingebedde afbeeldingen en tekst uit een bestand extraheren.
|
||||
> Meer informatie: <http://www.libpng.org/pub/png/apps/pngcheck.html>.
|
||||
|
||||
- Controleer de integriteit van een afbeeldingsbestand:
|
||||
|
||||
`pngcheck {{pad/naar/bestand.png}}`
|
||||
|
||||
- Controleer het bestand met [v]erbeterde en gekleurde ([c]) uitvoer:
|
||||
|
||||
`pngcheck -vc {{pad/naar/bestand.png}}`
|
||||
|
||||
- Toon de inhoud van [t]ekstfragmenten en zoek ([s]) naar PNG's binnen een specifiek bestand:
|
||||
|
||||
`pngcheck -ts {{pad/naar/bestand.png}}`
|
||||
|
||||
- Zoek naar en e[x]tracteer ingebedde PNG's binnen een specifiek bestand:
|
||||
|
||||
`pngcheck -x {{pad/naar/bestand.png}}`
|
|
@ -5,15 +5,15 @@
|
|||
|
||||
- Print a summary for an image (width, height, and color depth):
|
||||
|
||||
`pngcheck {{image.png}}`
|
||||
`pngcheck {{path/to/image.png}}`
|
||||
|
||||
- Print information for an image with [c]olorized output:
|
||||
|
||||
`pngcheck -c {{image.png}}`
|
||||
`pngcheck -c {{path/to/image.png}}`
|
||||
|
||||
- Print [v]erbose information for an image:
|
||||
|
||||
`pngcheck -cvt {{image.png}}`
|
||||
`pngcheck -cvt {{path/to/image.png}}`
|
||||
|
||||
- Receive an image from `stdin` and display detailed information:
|
||||
|
||||
|
@ -21,8 +21,8 @@
|
|||
|
||||
- [s]earch for PNGs within a specific file and display information about them:
|
||||
|
||||
`pngcheck -s {{image.png}}`
|
||||
`pngcheck -s {{path/to/image.png}}`
|
||||
|
||||
- Search for PNGs within another file and e[x]tract them:
|
||||
|
||||
`pngcheck -x {{image.png}}`
|
||||
`pngcheck -x {{path/to/image.png}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue