Go supplementary image libraries

Clone this repo:
  1. 3fd0b07 go.mod: update golang.org/x dependencies by Gopher Robot · 3 days ago master v0.42.0
  2. 28d2559 webp: avoid canvas overflow on 32-bit systems by Damien Neil · 3 weeks ago
  3. bd05eea image: add security considerations to README by Roland Shoemaker · 2 weeks ago
  4. 0d61147 bmp: reject input with invalid palette index by Damien Neil · 7 weeks ago v0.41.0
  5. fe8ae45 tiff: limit PackBits decompression output size by mohammadmseet-hue · 10 weeks ago

Go Images

Go Reference

This repository holds supplementary Go image packages.

Security Considerations

The packages in this repository have the same security model as the standard library image package. Specifically, when operating on arbitrary images, DecodeConfig should be called before Decode, so that the program can decide whether the image, as defined in the returned header, can be safely decoded with the available resources. A call to Decode which produces an extremely large image, as defined in the header returned by DecodeConfig, is not considered a security issue, regardless of whether the image is itself malformed or not.

Report Issues / Send Patches

This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://go.dev/doc/contribute.

The git repository is https://go.googlesource.com/image.

The main issue tracker for the image repository is located at https://go.dev/issues. Prefix your issue with “x/image:” in the subject line, so it is easy to find.