From 7a97ca0ba8f8fabb2b583ca01a2d1eb2714054d6 Mon Sep 17 00:00:00 2001 From: Juri Dispan Date: Sat, 28 Dec 2024 06:47:59 +0100 Subject: [PATCH] svgtopam, srftopam, pamtosrf: add pages (#15353) --- pages/common/pamtosrf.md | 9 +++++++++ pages/common/srftopam.md | 9 +++++++++ pages/common/svgtopam.md | 12 ++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 pages/common/pamtosrf.md create mode 100644 pages/common/srftopam.md create mode 100644 pages/common/svgtopam.md diff --git a/pages/common/pamtosrf.md b/pages/common/pamtosrf.md new file mode 100644 index 0000000000..ab39fa5255 --- /dev/null +++ b/pages/common/pamtosrf.md @@ -0,0 +1,9 @@ +# pamtosrf + +> Convert Netpbm images to SRF format. +> See also: `srftopam`. +> More information: . + +- Convert a Netpbm image or a stream of Netpbm images to SRF format: + +`pamtosrf {{path/to/file.pam}} > {{path/to/output.srf}}` diff --git a/pages/common/srftopam.md b/pages/common/srftopam.md new file mode 100644 index 0000000000..cd485594b5 --- /dev/null +++ b/pages/common/srftopam.md @@ -0,0 +1,9 @@ +# srftopam + +> Convert an SRF file to Netpbm format. +> See also: `pamtosrf`. +> More information: . + +- Convert an SRF file to Netpbm format: + +`srftopam {{path/to/file.srf}} > {{path/to/output.pam}}` diff --git a/pages/common/svgtopam.md b/pages/common/svgtopam.md new file mode 100644 index 0000000000..c62251d8b7 --- /dev/null +++ b/pages/common/svgtopam.md @@ -0,0 +1,12 @@ +# svgtopam + +> Convert an SVG file to Netpbm format. +> More information: . + +- Convert an SVG file to Netpbm format: + +`svgtopam {{path/to/file.svg}} > {{path/to/output.pam}}` + +- Emit textual output describing the input image: + +`svgtopam -trace {{path/to/file.svg}}`