cli → zoo → file →
zoo file snapshot
Snapshot a render of a CAD file as any supported image format.
Options
input
- The path to the input file to snapshot. If you pass
-
as the path, the file will be read from stdin -s/--src-format
- A valid source file format
Possible values:fbx | gltf | obj | ply | sldprt | step | stl
output-file
- The path to a file to output the image
-t/--output-format
- A valid output image format
Possible values:png | jpeg
-f/--format
- Command output format
Possible values:json | yaml | table
-d/--debug
- Print debug info
Default value:false
-h/--help
- Print help (see a summary with '-h')
About
# snapshot as png
$ zoo file snapshot my-file.obj my-file.png
# pass a file to snapshot from stdin
$ cat my-obj.obj | zoo file snapshot --output-format=png - my-file.png