1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:28:12 +00:00
serenity/Userland/Libraries/LibGfx/ImageFormats
Lucas CHOLLET 05c8ad4e91 LibGfx/JPEG: Write quantization tables in the zigzag ordering
This is clearly something I missed during the first implementation. The
specification is crystal clear about it: "The quantization elements
shall be specified in zig-zag scan order."

This patch fixes the weird behavior we had when using the quantization
table.
2023-07-04 00:01:06 +02:00
..
BMPLoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
BMPLoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
BMPWriter.cpp
BMPWriter.h
BooleanDecoder.cpp LibGfx/LibVideo: Check for overreads only at end of a VPX range decode 2023-06-10 07:17:12 +02:00
BooleanDecoder.h LibGfx/LibVideo: Check for overreads only at end of a VPX range decode 2023-06-10 07:17:12 +02:00
DDSLoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
DDSLoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
GIFLoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
GIFLoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
ICOLoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
ICOLoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
ImageDecoder.cpp LibGfx: Implement image decoder for TinyVG (.tvg) 2023-07-03 23:54:51 +02:00
ImageDecoder.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
JPEGLoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
JPEGLoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
JPEGShared.h LibGfx/JPEG: Put generic definitions in a shared header 2023-06-22 21:13:04 +02:00
JPEGWriter.cpp LibGfx/JPEG: Write quantization tables in the zigzag ordering 2023-07-04 00:01:06 +02:00
JPEGWriter.h LibGfx/JPEG: Add a JPEG encoder :^) 2023-06-22 21:13:04 +02:00
JPEGWriterTables.h LibGfx/JPEG: Add a JPEG encoder :^) 2023-06-22 21:13:04 +02:00
PBMLoader.cpp LibGfx/PortableFormat: Write directly to the bitmap 2023-06-22 21:32:45 +02:00
PBMLoader.h LibGfx/PortableFormat: Propagate errors from read_image_data() 2023-03-24 10:56:58 +01:00
PGMLoader.cpp LibGfx/PortableFormat: Write directly to the bitmap 2023-06-22 21:32:45 +02:00
PGMLoader.h LibGfx/PortableFormat: Propagate errors from read_image_data() 2023-03-24 10:56:58 +01:00
PNGLoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
PNGLoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
PNGShared.h
PNGWriter.cpp
PNGWriter.h
PortableFormatWriter.cpp LibGfx/PortableFormat: Use FixedArray::unchecked_at 2023-05-09 11:18:46 +02:00
PortableFormatWriter.h LibGfx/PortableFormat+image: Make encode take a Stream 2023-05-09 11:18:46 +02:00
PortableImageLoaderCommon.h LibGfx/PortableFormat: Write directly to the bitmap 2023-06-22 21:32:45 +02:00
PortableImageMapLoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
PPMLoader.cpp LibGfx/PortableFormat: Write directly to the bitmap 2023-06-22 21:32:45 +02:00
PPMLoader.h LibGfx/PortableFormat: Propagate errors from read_image_data() 2023-03-24 10:56:58 +01:00
QOILoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
QOILoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
QOIWriter.cpp Everywhere: Remove unused DeprecatedString includes 2023-04-09 22:00:54 +02:00
QOIWriter.h
TGALoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
TGALoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
TinyVGLoader.cpp LibGfx: Implement image decoder for TinyVG (.tvg) 2023-07-03 23:54:51 +02:00
TinyVGLoader.h LibGfx: Implement image decoder for TinyVG (.tvg) 2023-07-03 23:54:51 +02:00
WebPLoader.cpp LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
WebPLoader.h LibGfx: Allow passing an ideal size to image decoders 2023-07-03 23:54:51 +02:00
WebPLoaderLossless.cpp WebP/Lossless: Set alpha to 0xff if is_alpha_used is false in header 2023-06-18 18:47:47 +02:00
WebPLoaderLossless.h LibGfx/WebP: Minor cosmetical changes in WebPLoaderLossless.h 2023-05-09 06:35:56 +02:00
WebPLoaderLossy.cpp LibGfx/LibVideo: Check for overreads only at end of a VPX range decode 2023-06-10 07:17:12 +02:00
WebPLoaderLossy.h WebP/Lossy: Implement macroblock coefficient decoding 2023-05-29 10:41:53 -06:00
WebPLoaderLossyTables.h WebP/Lossy: Add const annotations to functions in Tables.h 2023-06-01 16:23:46 +02:00