2 releases

new 0.1.1 Apr 21, 2024
0.1.0 Jul 13, 2020

#255 in Images

Download history 2/week @ 2024-02-15 15/week @ 2024-02-22 8/week @ 2024-02-29 6/week @ 2024-03-28 2/week @ 2024-04-04 158/week @ 2024-04-18

166 downloads per month

GPL-2.0-or-later

36KB
584 lines

pstoedit

CI

Rust bindings to pstoedit.

This crate contains Rust bindings to pstoedit, a C++ program that can translate PostScript and PDF graphics into other vector formats.

Features

The API is similar to the C API of pstoedit. Information on drivers can be inquired and arbitrary commands to pstoedit can be constructed and run.

Optional Cargo features:

  • smallvec: potentially reduce the number of allocations using the smallvec crate.

Additionally, features are used to specify the targeted pstoedit version. Due to backward incompatibility, using pstoedit 4.00 or later without specifying an appropriate feature for this crate will result in a runtime error. See below for more details.

Examples

use pstoedit::{DriverInfo, Command};

pstoedit::init()?;

// For every driver ...
for driver in &DriverInfo::get()? {
    let format = driver.symbolic_name()?;
    let extension = driver.extension()?;
    let output_name = format!("output-{}.{}", format, extension);

    // ... convert input.ps to that format
    Command::new().args_slice(&["-f", format, "input.ps"])?.arg(output_name)?.run()?;
}

Requirements and compatibility

Only dynamic linking to pstoedit is supported, so pstoedit needs to be installed. Multiple versions are supported, but the appropriate feature starting with pstoedit_ has to be enabled to prevent a runtime IncompatibleVersion error.

  • pstoedit_4_00: compatible with pstoedit version 4.00–4.01, and likely with future 4.xx releases.
  • No feature starting with pstoedit_: compatible with pstoedit version 3.17–3.78.

License

Licensed under the GNU General Public License; either version 2 of the License (LICENSE or https://www.gnu.org/licenses/old-licenses/gpl-2.0.html), or (at your option) any later version.

Dependencies