LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

sldtoppm

Convert AutoCAD slide files to PPM

TLDR

Convert AutoCAD slide to PPM
$ sldtoppm [input.sld] > [output.ppm]
copy
Specify output size
$ sldtoppm -xsize [640] -ysize [480] [input.sld] > [output.ppm]
copy
Extract a slide from a library
$ sldtoppm -lib [slide_name] [library.slb] > [output.ppm]
copy
Adjust for square pixels
$ sldtoppm -adjust [input.sld] > [output.ppm]
copy
List slides in a library
$ sldtoppm -dir [library.slb]
copy

SYNOPSIS

sldtoppm [options] [file]

DESCRIPTION

sldtoppm converts AutoCAD slide (.sld) files and slide library (.slb) files to PPM format. Slides were used for presentations in AutoCAD. Part of the Netpbm toolkit.

PARAMETERS

-xsize n, -width n

Output width in pixels.
-ysize n, -height n
Output height in pixels.
-adjust
Scale width so output pixels are square.
-lib name
Extract named slide from library (converts name to upper case).
-Lib name
Extract named slide from library (case-sensitive).
-dir
List slides in a slide library.
-scale s
Scale the image by factor s (floating point, > 0).
-info
Dump slide header and vectors to stderr.
-verbose
Print slide information to stderr.

SEE ALSO

ppmtoacad(1), netpbm(1)

Copied to clipboard
Kai