Vendor things
34
third-party/vendor/image/tests/conversions.rs
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
use image::buffer::ConvertBuffer;
|
||||
use image::{ImageBuffer, Rgb, Rgba};
|
||||
|
||||
#[test]
|
||||
fn test_rgbu8_to_rgbu16() {
|
||||
// Create an all white image using Rgb<u16>s for pixel values
|
||||
let image_u16 =
|
||||
ImageBuffer::from_pixel(2, 2, image::Rgb::<u16>([u16::MAX, u16::MAX, u16::MAX]));
|
||||
|
||||
// Create an all white image using Rgb<u8>s for pixel values and convert it
|
||||
// to Rgb<u16>s.
|
||||
let image_u8 = ImageBuffer::from_pixel(2, 2, image::Rgb::<u8>([u8::MAX, u8::MAX, u8::MAX]));
|
||||
let image_converted: ImageBuffer<Rgb<u16>, _> = image_u8.convert();
|
||||
|
||||
assert_eq!(image_u16, image_converted);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_rgbau8_to_rgbau16() {
|
||||
let image_u16 = ImageBuffer::from_pixel(
|
||||
2,
|
||||
2,
|
||||
image::Rgba::<u16>([u16::MAX, u16::MAX, u16::MAX, u16::MAX]),
|
||||
);
|
||||
|
||||
let image_u8 = ImageBuffer::from_pixel(
|
||||
2,
|
||||
2,
|
||||
image::Rgba::<u8>([u8::MAX, u8::MAX, u8::MAX, u8::MAX]),
|
||||
);
|
||||
let image_converted: ImageBuffer<Rgba<u16>, _> = image_u8.convert();
|
||||
|
||||
assert_eq!(image_u16, image_converted);
|
||||
}
|
||||
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_badbitcount.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_badplanes.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_clrsUsed.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_height.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_pal8oversizepal.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_reallybig.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_rletopdown.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_shortfile.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 273 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_unusual_extend_buffer_usage.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 253 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Bad_width.bad_bmp
vendored
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Core_1_Bit.bmp
vendored
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/Core_4_Bit.bmp
vendored
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/Core_8_Bit.bmp
vendored
Normal file
|
After Width: | Height: | Size: 151 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_1_Bit.bmp
vendored
Normal file
|
After Width: | Height: | Size: 88 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_1_Bit_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 88 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_4_Bit.bmp
vendored
Normal file
|
After Width: | Height: | Size: 104 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_4_Bit_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 104 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_8_Bit.bmp
vendored
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_8_Bit_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_A8_R8_G8_B8.bmp
vendored
Normal file
|
After Width: | Height: | Size: 200 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_A8_R8_G8_B8_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 200 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_R8_G8_B8.bmp
vendored
Normal file
|
After Width: | Height: | Size: 176 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_R8_G8_B8_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 176 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_X1_R5_G5_B5.bmp
vendored
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
third-party/vendor/image/tests/images/bmp/images/Info_X1_R5_G5_B5_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_A1_R5_G5_B5.bmp
vendored
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_A1_R5_G5_B5_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_A4_R4_G4_B4.bmp
vendored
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_A4_R4_G4_B4_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_R5_G6_B5.bmp
vendored
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_R5_G6_B5_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_X4_R4_G4_B4.bmp
vendored
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_X4_R4_G4_B4_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 144 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_X8_R8_G8_B8.bmp
vendored
Normal file
|
After Width: | Height: | Size: 216 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V3_X8_R8_G8_B8_Top_Down.bmp
vendored
Normal file
|
After Width: | Height: | Size: 216 B |
BIN
third-party/vendor/image/tests/images/bmp/images/V4_24_Bit.bmp
vendored
Normal file
|
After Width: | Height: | Size: 451 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/V5_24_Bit.bmp
vendored
Normal file
|
After Width: | Height: | Size: 451 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal2.bmp
vendored
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal2color.bmp
vendored
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal4rle.bmp
vendored
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal4rlecut.bmp
vendored
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal4rletrns.bmp
vendored
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal8badindex.bmp
vendored
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal8rle.bmp
vendored
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal8v4.bmp
vendored
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/pal8v5.bmp
vendored
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgb16-231.bmp
vendored
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgb16-565.bmp
vendored
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgb16.bmp
vendored
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgb24.bmp
vendored
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgb32-111110.bmp
vendored
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgb32.bmp
vendored
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgb32bf.bmp
vendored
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgba16-1924.bmp
vendored
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgba32-61754.bmp
vendored
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
third-party/vendor/image/tests/images/bmp/images/rgba32.bmp
vendored
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
third-party/vendor/image/tests/images/exr/cropping - data window differs display window.exr
vendored
Normal file
BIN
third-party/vendor/image/tests/images/exr/cropping - uncropped original.exr
vendored
Normal file
BIN
third-party/vendor/image/tests/images/exr/overexposed gradient.hdr
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/acid2.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tbbn0g04.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tbbn3p08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tbgn3p08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tbrn2c08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tbwn3p08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tbyn3p08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tm3n3p02.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tp0n0g08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tp0n2c08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tp0n3p08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/farbfeld/transparency/tp1n3p08.ff
vendored
Normal file
BIN
third-party/vendor/image/tests/images/gif/anim/any-disposal.gif
vendored
Normal file
|
After Width: | Height: | Size: 341 B |
BIN
third-party/vendor/image/tests/images/gif/anim/border_touching_layers.gif
vendored
Normal file
|
After Width: | Height: | Size: 417 B |
BIN
third-party/vendor/image/tests/images/gif/anim/interlaced.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
third-party/vendor/image/tests/images/gif/anim/issue_1455_undersized.gif
vendored
Normal file
|
After Width: | Height: | Size: 189 B |
BIN
third-party/vendor/image/tests/images/gif/anim/large-gif-anim-combine.gif
vendored
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
third-party/vendor/image/tests/images/gif/anim/large-gif-anim-full-frame-replace.gif
vendored
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
third-party/vendor/image/tests/images/gif/anim/mixed-disposal.gif
vendored
Normal file
|
After Width: | Height: | Size: 343 B |
BIN
third-party/vendor/image/tests/images/gif/anim/oob.gif
vendored
Normal file
|
After Width: | Height: | Size: 76 B |
BIN
third-party/vendor/image/tests/images/gif/simple/alpha_gif_a.gif
vendored
Normal file
|
After Width: | Height: | Size: 562 B |
BIN
third-party/vendor/image/tests/images/gif/simple/issue_1455_oversized.gif
vendored
Normal file
|
After Width: | Height: | Size: 76 B |
BIN
third-party/vendor/image/tests/images/gif/simple/sample_1.gif
vendored
Normal file
|
After Width: | Height: | Size: 69 B |
BIN
third-party/vendor/image/tests/images/hdr/images/image1.hdr
vendored
Normal file
BIN
third-party/vendor/image/tests/images/hdr/images/rgbr4x4.hdr
vendored
Normal file
BIN
third-party/vendor/image/tests/images/ico/images/Bad_smile-incorrect-image-length.bad_ico
vendored
Normal file
|
After Width: | Height: | Size: 772 B |
BIN
third-party/vendor/image/tests/images/ico/images/bmp-24bpp-mask.ico
vendored
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
third-party/vendor/image/tests/images/ico/images/bmp-32bpp-alpha.ico
vendored
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
third-party/vendor/image/tests/images/ico/images/png-32bpp-alpha.ico
vendored
Normal file
|
After Width: | Height: | Size: 658 B |
BIN
third-party/vendor/image/tests/images/ico/images/smile.ico
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
third-party/vendor/image/tests/images/jpg/progressive/3.jpg
vendored
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
third-party/vendor/image/tests/images/jpg/progressive/cat.jpg
vendored
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
third-party/vendor/image/tests/images/jpg/progressive/test.jpg
vendored
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
third-party/vendor/image/tests/images/pbm/images/issue-794.pbm
vendored
Normal file
BIN
third-party/vendor/image/tests/images/png/16bpc/basn6a16.png
vendored
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
third-party/vendor/image/tests/images/png/apng/ball.png
vendored
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
third-party/vendor/image/tests/images/png/bugfixes/debug_triangle_corners_widescreen.png
vendored
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
third-party/vendor/image/tests/images/png/bugfixes/issue#2026.png
vendored
Normal file
|
After Width: | Height: | Size: 247 B |
BIN
third-party/vendor/image/tests/images/png/bugfixes/issue#403.png
vendored
Normal file
|
After Width: | Height: | Size: 87 B |