2023-12-19 12:51:08 +01:00
|
|
|
# pnmscalefixed
|
|
|
|
|
|
|
|
> Scale a PNM file quickly with possibly reduced quality.
|
|
|
|
> See also: `pamscale`.
|
|
|
|
> More information: <https://netpbm.sourceforge.net/doc/pnmscalefixed.html>.
|
|
|
|
|
|
|
|
- Scale an image such that the result has the specified dimensions:
|
|
|
|
|
2025-04-01 06:42:14 +03:00
|
|
|
`pnmscalefixed {{[-w|-width]}} {{width}} {{[-h|-height]}} {{height}} {{path/to/input.pnm}} > {{path/to/output.pnm}}`
|
2023-12-19 12:51:08 +01:00
|
|
|
|
|
|
|
- Scale an image such that the result has the specified width, keeping the aspect ratio:
|
|
|
|
|
2025-04-01 06:42:14 +03:00
|
|
|
`pnmscalefixed {{[-w|-width]}} {{width}} {{path/to/input.pnm}} > {{path/to/output.pnm}}`
|
2023-12-19 12:51:08 +01:00
|
|
|
|
|
|
|
- Scale an image such that its width and height is changed by the specified factors:
|
|
|
|
|
2025-04-01 06:42:14 +03:00
|
|
|
`pnmscalefixed {{[-xsc|-xscale]}} {{x_factor}} {{[-ysc|-yscale]}} {{y_factor}} {{path/to/input.pnm}} > {{path/to/output.pnm}}`
|