Packages with configuration changes: +fonts-droid-fallback 1:6.0.1r16-1.1 all +fonts-noto-mono 20201225-1 all +fonts-urw-base35 20200910-1 all +gsfonts 1:8.11+urwcyr1.0.7~pre44-4.5 all +imagemagick-6-common 8:6.9.11.60+dfsg-1.3 all +poppler-data 0.4.10-1 all Package changes: +chafa 1.6.0-1 arm64 +fonts-droid-fallback 1:6.0.1r16-1.1 all +fonts-noto-mono 20201225-1 all +fonts-urw-base35 20200910-1 all +ghostscript 9.53.3~dfsg-7+deb11u2 arm64 +gsfonts 1:8.11+urwcyr1.0.7~pre44-4.5 all +imagemagick-6-common 8:6.9.11.60+dfsg-1.3 all +libaom0 1.0.0.errata1-3 arm64 +libavahi-client3 0.8-5 arm64 +libchafa0 1.6.0-1 arm64 +libcups2 2.3.3op2-3+deb11u1 arm64 +libdav1d4 0.7.1-3 arm64 +libde265-0 1.0.8-1 arm64 +libfftw3-double3 3.3.8-2 arm64 +libgs9 9.53.3~dfsg-7+deb11u2 arm64 +libgs9-common 9.53.3~dfsg-7+deb11u2 all +libheif1 1.11.0-1 arm64 +libidn11 1.33-3 arm64 +libijs-0.35 0.35-15 arm64 +libjbig2dec0 0.19-2 arm64 +liblcms2-2 2.12~rc1-2 arm64 +liblqr-1-0 0.4.2-2.1 arm64 +libltdl7 2.4.6-15 arm64 +libmagickcore-6.q16-6 8:6.9.11.60+dfsg-1.3 arm64 +libmagickwand-6.q16-6 8:6.9.11.60+dfsg-1.3 arm64 +libnuma1 2.0.12-1+b1 arm64 +libopenjp2-7 2.4.0-3 arm64 +libpaper-utils 1.1.28+b1 arm64 +libpaper1 1.1.28+b1 arm64 +libwebpdemux2 0.6.1-2.1 arm64 +libwebpmux3 0.6.1-2.1 arm64 +libx265-192 3.4-2 arm64 +neofetch 7.1.0-2 all +poppler-data 0.4.10-1 all
69 lines
2.3 KiB
XML
69 lines
2.3 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE quantization-tables [
|
|
<!ELEMENT quantization-tables (table)>
|
|
<!ATTLIST quantization-tables xmlns CDATA #FIXED "">
|
|
<!ELEMENT table (description , levels)>
|
|
<!ATTLIST table xmlns CDATA #FIXED "">
|
|
<!ATTLIST table alias NMTOKEN #REQUIRED>
|
|
<!ATTLIST table slot CDATA #REQUIRED>
|
|
<!ELEMENT description (#PCDATA)>
|
|
<!ATTLIST description xmlns CDATA #FIXED "">
|
|
<!ELEMENT levels (#PCDATA)>
|
|
<!ATTLIST levels xmlns CDATA #FIXED "">
|
|
<!ATTLIST levels divisor CDATA #REQUIRED>
|
|
<!ATTLIST levels height CDATA #REQUIRED>
|
|
<!ATTLIST levels width CDATA #REQUIRED>
|
|
]>
|
|
<!--
|
|
JPEG quantization table created by Dr. Nicolas Robidoux, Senior Research
|
|
Scientist at Phase One (www.phaseone.com) for use with 2x2 Chroma
|
|
subsampling and (IJG-style, hence ImageMagick-style) quality level
|
|
around 75.
|
|
|
|
It is based on the one recommended in
|
|
|
|
Relevance of human vision to JPEG-DCT compression by Stanley A. Klein,
|
|
Amnon D. Silverstein and Thom Carney. In Human Vision, Visual
|
|
Processing and Digital Display III, 1992.
|
|
|
|
for 1 minute per pixel viewing.
|
|
|
|
Specifying only one table in this xml file has two effects when used with
|
|
the ImageMagick option
|
|
|
|
-define jpeg:q-table=PATH/TO/THIS/FILE
|
|
|
|
1) This quantization table is automatically used for all three channels;
|
|
|
|
2) Only one copy is embedded in the JPG file, which saves a few bits
|
|
(only worthwhile for very small thumbnails).
|
|
-->
|
|
<quantization-tables>
|
|
<table slot="0" alias="luma">
|
|
<description>Luma Quantization Table</description>
|
|
<levels width="8" height="8" divisor="1">
|
|
16, 16, 16, 18, 25, 37, 56, 85,
|
|
16, 17, 20, 27, 34, 40, 53, 75,
|
|
16, 20, 24, 31, 43, 62, 91, 135,
|
|
18, 27, 31, 40, 53, 74, 106, 156,
|
|
25, 34, 43, 53, 69, 94, 131, 189,
|
|
37, 40, 62, 74, 94, 124, 169, 238,
|
|
56, 53, 91, 106, 131, 169, 226, 311,
|
|
85, 75, 135, 156, 189, 238, 311, 418
|
|
</levels>
|
|
</table>
|
|
<!--
|
|
If you want to use a different quantization table for Chroma, for example,
|
|
just add:
|
|
|
|
<table slot="1" alias="chroma">
|
|
<description>Chroma Quantization Table</description>
|
|
INSERT 64 POSITIVE INTEGERS HERE, COMMA-SEPARATED
|
|
</levels>
|
|
</table>
|
|
|
|
here (but outside of these comments).
|
|
-->
|
|
</quantization-tables>
|
|
|