Go supplementary image libraries

Clone this repo:
  1. 7c04344 tiff: add buffer slice overflow checks for 32-bit systems by Damien Neil · 7 days ago master
  2. c5511df webp: require that VP8/VP8L dimensions match canvas dimensions by Damien Neil · 10 days ago
  3. 38fd220 bmp: don't panic on too-large image, reject 0xN by Damien Neil · 10 days ago
  4. f95dd26 font/sfnt: avoid panics from out-of-bounds access in invalid GPOS table by Damien Neil · 11 days ago
  5. 1e486eb tiff: don't panic when decoding too-large image on 32-bit platforms by Damien Neil · 11 days 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.