Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pamditherbw: add Spanish translation #14936

Merged
merged 2 commits into from
Nov 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions pages.es/common/pamditherbw.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# pamditherbw

> Aplica dithering a una imagen en escala de grises, es decir, la convierte en un patrón de píxeles blancos y negros que parecen iguales a la escala de grises original.
> Vea también: `pbmreduce`.
> Más información: <https://netpbm.sourceforge.net/doc/pamditherbw.html>.

- Lee una imagen PGM, aplica la separación y la guarda en un archivo:

`ppmditherbw {{ruta/a/la/imagen.pgm}} > {{ruta/al/archivo.pgm}}`

- Utiliza el método de cuantización especificado:

`ppmditherbw -{{floyd|fs|atkinson|threshold|hilbert|...}} {{ruta/a/la/imagen.pgm}} > {{ruta/al/archivo.pgm}}`

- Utiliza el método de cuantización de atkinson y la semilla especificada para un generador de número pseudo-aleatorio:

`ppmditherbw -atkinson -randomseed {{1337}} {{ruta/a/la/imagen.pgm}} > {{ruta/al/archivo.pgm}}`

- Especifica el valor de umbralización (thresholding) para los métodos de cuantización que realizan algún tipo de umbralización:

`ppmditherbw -{{fs|atkinson|thresholding}} -value {{0.3}} {{ruta/a/la/imagen.pgm}} > {{ruta/al/archivo.pgm}}`