Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.18 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.18 KB

image-extras

Decoding support for additional image formats beyond those provided by the image crate.

Supported formats

Extension File Format Description
PCX Wikipedia

New Formats

We welcome PRs to add support for additional image formats.

Required criteria

  • Must be one of the raster image formats recognized by ImageMagick.
  • No patent or licensing restrictions.
  • Specification or sufficiently detailed file format description freely available online.
  • Must include multiple test images with suitable licenses.
  • Implementation must be entirely in Rust.

Additional nice-to-haves

  • Minimal or no dependencies on external libraries.
  • No use of unsafe code.

Fuzzing

Fuzzing is not a priority for this crate and decoders may panic or worse on malformed input. Please do not open issues for crashes found by fuzzing, though PRs fixing them are welcome.

This is an intentional tradeoff to balance the inclusion criteria for new formats with maintainer time and effort.