Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: rust-image
Source: <url://example.com>
#
# Please double check copyright with the licensecheck(1) command.

Files:     .cargo_vcs_info.json
           .gitattributes
           .gitignore
           CHANGES.md
           Cargo.lock
           Cargo.toml
           Cargo.toml.orig
           Cargo.toml.public-private-dependencies
           benches/README.md
           benches/copy_from.rs
           benches/decode.rs
           benches/encode.rs
           clippy.toml
           deny.toml
           docs/2019-04-23-memory-unsafety.md
           release.sh
           src/animation.rs
           src/buffer.rs
           src/codecs/avif/decoder.rs
           src/codecs/avif/encoder.rs
           src/codecs/avif/mod.rs
           src/codecs/bmp/decoder.rs
           src/codecs/bmp/encoder.rs
           src/codecs/bmp/mod.rs
           src/codecs/dds.rs
           src/codecs/dxt.rs
           src/codecs/farbfeld.rs
           src/codecs/gif.rs
           src/codecs/hdr/decoder.rs
           src/codecs/hdr/encoder.rs
           src/codecs/hdr/mod.rs
           src/codecs/ico/decoder.rs
           src/codecs/ico/encoder.rs
           src/codecs/ico/mod.rs
           src/codecs/jpeg/decoder.rs
           src/codecs/jpeg/encoder.rs
           src/codecs/jpeg/entropy.rs
           src/codecs/jpeg/mod.rs
           src/codecs/openexr.rs
           src/codecs/png.rs
           src/codecs/pnm/autobreak.rs
           src/codecs/pnm/decoder.rs
           src/codecs/pnm/encoder.rs
           src/codecs/pnm/header.rs
           src/codecs/pnm/mod.rs
           src/codecs/tga/decoder.rs
           src/codecs/tga/encoder.rs
           src/codecs/tga/header.rs
           src/codecs/tga/mod.rs
           src/codecs/tiff.rs
           src/codecs/webp/decoder.rs
           src/codecs/webp/extended.rs
           src/codecs/webp/huffman.rs
           src/codecs/webp/loop_filter.rs
           src/codecs/webp/lossless.rs
           src/codecs/webp/lossless_transform.rs
           src/codecs/webp/mod.rs
           src/codecs/webp/transform.rs
           src/codecs/webp/vp8.rs
           src/color.rs
           src/dynimage.rs
           src/error.rs
           src/flat.rs
           src/image.rs
           src/imageops/affine.rs
           src/imageops/colorops.rs
           src/imageops/mod.rs
           src/imageops/sample.rs
           src/io/free_functions.rs
           src/io/mod.rs
           src/io/reader.rs
           src/math/mod.rs
           src/math/rect.rs
           src/math/utils.rs
           src/traits.rs
           src/utils/mod.rs
Copyright: __NO_COPYRIGHT_NOR_LICENSE__
License:   __NO_COPYRIGHT_NOR_LICENSE__

Files:     README.md
Copyright: __NO_COPYRIGHT__ in: README.md
License:   __UNKNOWN__
 [How to contribute](https://github.com/image-rs/organization/blob/master/CONTRIBUTING.md)
 .
 ## An Image Processing Library
 .
 This crate provides basic image processing functions and methods for converting to and from various image formats.
 .
 All image processing functions provided operate on types that implement the `GenericImageView` and `GenericImage` traits and return an `ImageBuffer`.
 .
 ## Supported Image Formats
 .
 `image` provides implementations of common image format encoders and decoders.
 .
 | Format | Decoding | Encoding |
 | ------ | -------- | -------- |
 | PNG    | All supported color types | Same as decoding |
 | JPEG   | Baseline and progressive | Baseline JPEG |
 | GIF    | Yes | Yes |
 | BMP    | Yes | Rgb8, Rgba8, Gray8, GrayA8 |
 | ICO    | Yes | Yes |
 | TIFF   | Baseline(no fax support) + LZW + PackBits | Rgb8, Rgba8, Gray8 |
 | WebP   | Yes | No |
 | AVIF   | Only 8-bit | Lossy |
 | PNM    | PBM, PGM, PPM, standard PAM | Yes |
 | DDS    | DXT1, DXT3, DXT5 | No |
 | TGA    | Yes | Rgb8, Rgba8, Bgr8, Bgra8, Gray8, GrayA8 |
 | OpenEXR  | Rgb32F, Rgba32F (no dwa compression) | Rgb32F, Rgba32F (no dwa compression) |
 | farbfeld | Yes | Yes |
 .
 ### The [`ImageDecoder`](https://docs.rs/image/*/image/trait.ImageDecoder.html) and [`ImageDecoderRect`](https://docs.rs/image/*/image/trait.ImageDecoderRect.html) Traits
 .
 All image format decoders implement the `ImageDecoder` trait which provide
 basic methods for getting image metadata and decoding images. Some formats
 additionally provide `ImageDecoderRect` implementations which allow for
 decoding only part of an image at once.
 .
 The most important methods for decoders are...
 **dimensions**: Return a tuple containing the width and height of the image.

Files:     src/codecs/jpeg/transform.rs
Copyright: __NO_COPYRIGHT__ in: src/codecs/jpeg/transform.rs
License:   __UNKNOWN__
 Permission is hereby granted to use, copy, modify, and distribute this
 software (or portions thereof) for any purpose, without fee, subject to these
 conditions:
 (1) If any part of the source code for this software is distributed, then this
 README file must be included, with this copyright and no-warranty notice
 unaltered; and any additions, deletions, or changes to the original files
 must be clearly indicated in accompanying documentation.
 (2) If only executable code is distributed, then the accompanying
 documentation must state that "this software is based in part on the work of
 the Independent JPEG Group".
 (3) Permission for use of this software is granted only if the user accepts
 full responsibility for any undesirable consequences; the authors accept
 NO LIABILITY for damages of any kind.
 .
 These conditions apply to any software derived from or based on the IJG code,
 not just to the unmodified library.  If you use our work, you ought to
 acknowledge us.
 .
 Permission is NOT granted for the use of any IJG author's name or company name
 in advertising or publicity relating to this software or products derived from
 it.  This software may be referred to only as "the Independent JPEG Group's
 software".
 .
 We specifically permit and encourage the use of this software as the basis of
 commercial products, provided that all warranty or liability claims are
 assumed by the product vendor.

Files:     src/lib.rs
Copyright: 2018 Guillaume Gomez
License:   __NO_LICENSE__

#----------------------------------------------------------------------------
# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
# license/copyright files.

#----------------------------------------------------------------------------
# License file: LICENSE
 The MIT License (MIT)
 .
 Copyright (c) 2014 PistonDevelopers
 .
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
