Merge branch 'master' into fix-imagingHinclude
|
@ -24,8 +24,8 @@ install:
|
||||||
- mv c:\pillow-depends-master c:\pillow-depends
|
- mv c:\pillow-depends-master c:\pillow-depends
|
||||||
- xcopy /s c:\pillow-depends\test_images\* c:\pillow\tests\images
|
- xcopy /s c:\pillow-depends\test_images\* c:\pillow\tests\images
|
||||||
- 7z x ..\pillow-depends\nasm-2.14.02-win64.zip -oc:\
|
- 7z x ..\pillow-depends\nasm-2.14.02-win64.zip -oc:\
|
||||||
- ..\pillow-depends\gs9531w32.exe /S
|
- ..\pillow-depends\gs9533w32.exe /S
|
||||||
- path c:\nasm-2.14.02;C:\Program Files (x86)\gs\gs9.53.1\bin;%PATH%
|
- path c:\nasm-2.14.02;C:\Program Files (x86)\gs\gs9.53.3\bin;%PATH%
|
||||||
- cd c:\pillow\winbuild\
|
- cd c:\pillow\winbuild\
|
||||||
- ps: |
|
- ps: |
|
||||||
c:\python37\python.exe c:\pillow\winbuild\build_prepare.py -v --depends=C:\pillow-depends\
|
c:\python37\python.exe c:\pillow\winbuild\build_prepare.py -v --depends=C:\pillow-depends\
|
||||||
|
|
|
@ -21,7 +21,7 @@ sudo apt-get -qq install libfreetype6-dev liblcms2-dev python3-tk\
|
||||||
ghostscript libffi-dev libjpeg-turbo-progs libopenjp2-7-dev\
|
ghostscript libffi-dev libjpeg-turbo-progs libopenjp2-7-dev\
|
||||||
cmake imagemagick libharfbuzz-dev libfribidi-dev
|
cmake imagemagick libharfbuzz-dev libfribidi-dev
|
||||||
|
|
||||||
if [[ $TRAVIS_CPU_ARCH == "s390x" ]]; then sudo chown $USER ~/.cache/pip/wheels ; fi
|
if [[ $TRAVIS_CPU_ARCH == "s390x" || $TRAVIS_CPU_ARCH == "ppc64le" ]]; then sudo chown $USER ~/.cache/pip/wheels ; fi
|
||||||
|
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip
|
||||||
PYTHONOPTIMIZE=0 pip install cffi
|
PYTHONOPTIMIZE=0 pip install cffi
|
||||||
|
@ -33,8 +33,10 @@ pip install pyroma
|
||||||
pip install test-image-results
|
pip install test-image-results
|
||||||
pip install numpy
|
pip install numpy
|
||||||
|
|
||||||
# TODO Remove when 3.9-dev includes setuptools 49.3.2+:
|
# TODO Remove when 3.8 / 3.9 / PyPy3 includes setuptools 49.3.2+:
|
||||||
if [ "$GHA_PYTHON_VERSION" == "3.9-dev" ]; then pip install -U "setuptools>=49.3.2" ; fi
|
if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then pip install -U "setuptools>=49.3.2" ; fi
|
||||||
|
if [ "$GHA_PYTHON_VERSION" == "3.9" ]; then pip install -U "setuptools>=49.3.2" ; fi
|
||||||
|
if [ "$TRAVIS_PYTHON_VERSION" == "pypy3.6-7.3.1" ]; then pip install -U "setuptools>=49.3.2" ; fi
|
||||||
|
|
||||||
if [[ $TRAVIS_PYTHON_VERSION == 3.* ]]; then
|
if [[ $TRAVIS_PYTHON_VERSION == 3.* ]]; then
|
||||||
# arm64, ppc64le, s390x CPUs:
|
# arm64, ppc64le, s390x CPUs:
|
||||||
|
|
14
.github/mergify.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
pull_request_rules:
|
||||||
|
- name: Automatic merge
|
||||||
|
conditions:
|
||||||
|
- "#approved-reviews-by>=1"
|
||||||
|
- label=automerge
|
||||||
|
- status-success=Lint
|
||||||
|
- status-success=Test Successful
|
||||||
|
- status-success=Docker Test Successful
|
||||||
|
- status-success=Windows Test Successful
|
||||||
|
- status-success=continuous-integration/appveyor/pr
|
||||||
|
- status-success=continuous-integration/travis-ci/pr
|
||||||
|
actions:
|
||||||
|
merge:
|
||||||
|
method: merge
|
5
.github/workflows/macos-install.sh
vendored
|
@ -15,8 +15,9 @@ pip install test-image-results
|
||||||
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
|
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
|
||||||
pip install numpy
|
pip install numpy
|
||||||
|
|
||||||
# TODO Remove when 3.9-dev includes setuptools 49.3.2+:
|
# TODO Remove when 3.8 / 3.9 includes setuptools 49.3.2+:
|
||||||
if [ "$GHA_PYTHON_VERSION" == "3.9-dev" ]; then pip install -U "setuptools>=49.3.2" ; fi
|
if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then pip install -U "setuptools>=49.3.2" ; fi
|
||||||
|
if [ "$GHA_PYTHON_VERSION" == "3.9" ]; then pip install -U "setuptools>=49.3.2" ; fi
|
||||||
|
|
||||||
# extra test images
|
# extra test images
|
||||||
pushd depends && ./install_extra_test_images.sh && popd
|
pushd depends && ./install_extra_test_images.sh && popd
|
||||||
|
|
8
.github/workflows/test-docker.yml
vendored
|
@ -61,3 +61,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
flags: GHA_Docker
|
flags: GHA_Docker
|
||||||
name: ${{ matrix.docker }}
|
name: ${{ matrix.docker }}
|
||||||
|
|
||||||
|
success:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Docker Test Successful
|
||||||
|
steps:
|
||||||
|
- name: Success
|
||||||
|
run: echo Docker Test Successful
|
||||||
|
|
28
.github/workflows/test-windows.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.6", "3.7", "3.8", "3.9-dev", "pypy3"]
|
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy3"]
|
||||||
architecture: ["x86", "x64"]
|
architecture: ["x86", "x64"]
|
||||||
include:
|
include:
|
||||||
- architecture: "x86"
|
- architecture: "x86"
|
||||||
|
@ -54,7 +54,7 @@ jobs:
|
||||||
|
|
||||||
- name: Set up TCL
|
- name: Set up TCL
|
||||||
if: "contains(matrix.python-version, 'pypy')"
|
if: "contains(matrix.python-version, 'pypy')"
|
||||||
run: Write-Host "::set-env name=TCL_LIBRARY::$env:pythonLocation\tcl\tcl8.5"
|
run: echo "TCL_LIBRARY=$env:pythonLocation\tcl\tcl8.5" >> $env:GITHUB_ENV
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
- name: Print build system information
|
- name: Print build system information
|
||||||
|
@ -63,18 +63,18 @@ jobs:
|
||||||
- name: pip install wheel pytest pytest-cov
|
- name: pip install wheel pytest pytest-cov
|
||||||
run: python -m pip install wheel pytest pytest-cov
|
run: python -m pip install wheel pytest pytest-cov
|
||||||
|
|
||||||
# TODO Remove when 3.9-dev includes setuptools 49.3.2+:
|
# TODO Remove when 3.8 / 3.9 includes setuptools 49.3.2+:
|
||||||
- name: Upgrade setuptools
|
- name: Upgrade setuptools
|
||||||
if: "contains(matrix.python-version, '3.9-dev')"
|
if: "contains(matrix.python-version, '3.8') || contains(matrix.python-version, '3.9')"
|
||||||
run: python -m pip install -U "setuptools>=49.3.2"
|
run: python -m pip install -U "setuptools>=49.3.2"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
7z x winbuild\depends\nasm-2.14.02-win64.zip "-o$env:RUNNER_WORKSPACE\"
|
7z x winbuild\depends\nasm-2.14.02-win64.zip "-o$env:RUNNER_WORKSPACE\"
|
||||||
Write-Host "::add-path::$env:RUNNER_WORKSPACE\nasm-2.14.02"
|
echo "$env:RUNNER_WORKSPACE\nasm-2.14.02" >> $env:GITHUB_PATH
|
||||||
|
|
||||||
winbuild\depends\gs9531w32.exe /S
|
winbuild\depends\gs9533w32.exe /S
|
||||||
Write-Host "::add-path::C:\Program Files (x86)\gs\gs9.53.1\bin"
|
echo "C:\Program Files (x86)\gs\gs9.53.3\bin" >> $env:GITHUB_PATH
|
||||||
|
|
||||||
xcopy /s winbuild\depends\test_images\* Tests\images\
|
xcopy /s winbuild\depends\test_images\* Tests\images\
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
@ -105,6 +105,10 @@ jobs:
|
||||||
- name: Build dependencies / WebP
|
- name: Build dependencies / WebP
|
||||||
if: steps.build-cache.outputs.cache-hit != 'true'
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
||||||
run: "& winbuild\\build\\build_dep_libwebp.cmd"
|
run: "& winbuild\\build\\build_dep_libwebp.cmd"
|
||||||
|
# for FreeType CBDT font support
|
||||||
|
- name: Build dependencies / libpng
|
||||||
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
||||||
|
run: "& winbuild\\build\\build_dep_libpng.cmd"
|
||||||
- name: Build dependencies / FreeType
|
- name: Build dependencies / FreeType
|
||||||
if: steps.build-cache.outputs.cache-hit != 'true'
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
||||||
run: "& winbuild\\build\\build_dep_freetype.cmd"
|
run: "& winbuild\\build\\build_dep_freetype.cmd"
|
||||||
|
@ -224,7 +228,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Set up shell
|
- name: Set up shell
|
||||||
run: echo ::add-path::C:\msys64\usr\bin\
|
run: echo "C:\msys64\usr\bin\" >> $env:GITHUB_PATH
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
|
@ -267,3 +271,11 @@ jobs:
|
||||||
bash <(curl -s https://codecov.io/bash) -F GHA_Windows
|
bash <(curl -s https://codecov.io/bash) -F GHA_Windows
|
||||||
env:
|
env:
|
||||||
CODECOV_NAME: ${{ matrix.name }}
|
CODECOV_NAME: ${{ matrix.name }}
|
||||||
|
|
||||||
|
success:
|
||||||
|
needs: [build, msys]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Windows Test Successful
|
||||||
|
steps:
|
||||||
|
- name: Success
|
||||||
|
run: echo Windows Test Successful
|
||||||
|
|
10
.github/workflows/test.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
]
|
]
|
||||||
python-version: [
|
python-version: [
|
||||||
"pypy3",
|
"pypy3",
|
||||||
"3.9-dev",
|
"3.9",
|
||||||
"3.8",
|
"3.8",
|
||||||
"3.7",
|
"3.7",
|
||||||
"3.6",
|
"3.6",
|
||||||
|
@ -107,3 +107,11 @@ jobs:
|
||||||
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }}
|
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }}
|
||||||
env:
|
env:
|
||||||
CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}
|
CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
success:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Test Successful
|
||||||
|
steps:
|
||||||
|
- name: Success
|
||||||
|
run: echo Test Successful
|
||||||
|
|
|
@ -26,7 +26,7 @@ matrix:
|
||||||
- python: "3.8"
|
- python: "3.8"
|
||||||
arch: s390x
|
arch: s390x
|
||||||
|
|
||||||
- python: "pypy3"
|
- python: "pypy3.6-7.3.1"
|
||||||
name: "PyPy3 Xenial"
|
name: "PyPy3 Xenial"
|
||||||
- python: "3.9-dev"
|
- python: "3.9-dev"
|
||||||
name: "3.9-dev Xenial"
|
name: "3.9-dev Xenial"
|
||||||
|
|
41
CHANGES.rst
|
@ -5,6 +5,45 @@ Changelog (Pillow)
|
||||||
8.0.0 (unreleased)
|
8.0.0 (unreleased)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
- Add getlength and getbbox functions for TrueType fonts #4959
|
||||||
|
[nulano, radarhere, hugovk]
|
||||||
|
|
||||||
|
- Drop support for PyPy3 < 7.2.0 #4964
|
||||||
|
[nulano]
|
||||||
|
|
||||||
|
- Allow tuples with one item to give single color value in getink #4927
|
||||||
|
[radarhere, nulano]
|
||||||
|
|
||||||
|
- Add support for CBDT and COLR fonts #4955
|
||||||
|
[nulano, hugovk]
|
||||||
|
|
||||||
|
- Removed OSError in favour of DecompressionBombError for BMP #4966
|
||||||
|
[radarhere]
|
||||||
|
|
||||||
|
- Implemented another ellipse drawing algorithm #4523
|
||||||
|
[xtsm, radarhere]
|
||||||
|
|
||||||
|
- Removed unused JpegImagePlugin._fixup_dict function #4957
|
||||||
|
[radarhere]
|
||||||
|
|
||||||
|
- Added reading and writing of private PNG chunks #4292
|
||||||
|
[radarhere]
|
||||||
|
|
||||||
|
- Implement anchor for TrueType fonts #4930
|
||||||
|
[nulano, hugovk]
|
||||||
|
|
||||||
|
- Fixed bug in Exif __delitem__ #4942
|
||||||
|
[radarhere]
|
||||||
|
|
||||||
|
- Fix crash in ImageTk.PhotoImage on MinGW 64-bit #4946
|
||||||
|
[nulano]
|
||||||
|
|
||||||
|
- Moved CVE images to pillow-depends #4929
|
||||||
|
[radarhere]
|
||||||
|
|
||||||
|
- Refactor font_getsize and font_render #4910
|
||||||
|
[nulano]
|
||||||
|
|
||||||
- Fixed loading profile with non-ASCII path on Windows #4914
|
- Fixed loading profile with non-ASCII path on Windows #4914
|
||||||
[radarhere]
|
[radarhere]
|
||||||
|
|
||||||
|
@ -4008,7 +4047,7 @@ Pre-fork
|
||||||
This section may not be fully complete. For changes since this file
|
This section may not be fully complete. For changes since this file
|
||||||
was last updated, see the repository revision history:
|
was last updated, see the repository revision history:
|
||||||
|
|
||||||
https://bitbucket.org/effbot/pil-2009-raclette/commits/all
|
http://svn.effbot.org/public/pil/
|
||||||
|
|
||||||
(1.1.7 final)
|
(1.1.7 final)
|
||||||
|
|
||||||
|
|
2
Makefile
|
@ -64,7 +64,7 @@ install:
|
||||||
|
|
||||||
.PHONY: install-coverage
|
.PHONY: install-coverage
|
||||||
install-coverage:
|
install-coverage:
|
||||||
CFLAGS="-coverage" python3 setup.py build_ext install
|
CFLAGS="-coverage -Werror=implicit-function-declaration" python3 setup.py build_ext install
|
||||||
python3 selftest.py
|
python3 selftest.py
|
||||||
|
|
||||||
.PHONY: debug
|
.PHONY: debug
|
||||||
|
|
|
@ -80,6 +80,14 @@ As of 2019, Pillow development is
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
The Python Imaging Library adds image processing capabilities to your Python interpreter.
|
||||||
|
|
||||||
|
This library provides extensive file format support, an efficient internal representation, and fairly powerful image processing capabilities.
|
||||||
|
|
||||||
|
The core image library is designed for fast access to data stored in a few basic pixel formats. It should provide a solid foundation for a general image processing tool.
|
||||||
|
|
||||||
## More Information
|
## More Information
|
||||||
|
|
||||||
- [Documentation](https://pillow.readthedocs.io/)
|
- [Documentation](https://pillow.readthedocs.io/)
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
# Reproductions/tests for crashes/read errors in TiffDecode.c
|
|
||||||
|
|
||||||
# When run in python, all of these images should fail for
|
|
||||||
# one reason or another, either as a buffer overrun,
|
|
||||||
# unrecognized datastream, or truncated image file.
|
|
||||||
# There shouldn't be any segfaults.
|
|
||||||
#
|
|
||||||
# if run like
|
|
||||||
# `valgrind --tool=memcheck python check_tiff_crashes.py 2>&1 | grep TiffDecode.c`
|
|
||||||
# the output should be empty. There may be python issues
|
|
||||||
# in the valgrind especially if run in a debug python
|
|
||||||
# version.
|
|
||||||
|
|
||||||
|
|
||||||
from PIL import Image
|
|
||||||
|
|
||||||
repro_read_strip = (
|
|
||||||
"images/crash_1.tif",
|
|
||||||
"images/crash_2.tif",
|
|
||||||
)
|
|
||||||
|
|
||||||
for path in repro_read_strip:
|
|
||||||
with Image.open(path) as im:
|
|
||||||
try:
|
|
||||||
im.load()
|
|
||||||
except Exception as msg:
|
|
||||||
print(msg)
|
|
BIN
Tests/fonts/BungeeColor-Regular_colr_Windows.ttf
Normal file
BIN
Tests/fonts/DejaVuSans-24-1-stripped.ttf
Normal file
BIN
Tests/fonts/DejaVuSans-24-2-stripped.ttf
Normal file
BIN
Tests/fonts/DejaVuSans-24-4-stripped.ttf
Normal file
BIN
Tests/fonts/DejaVuSans-24-8-stripped.ttf
Normal file
|
@ -1,13 +1,20 @@
|
||||||
|
|
||||||
NotoNastaliqUrdu-Regular.ttf and NotoSansSymbols-Regular.ttf, from https://github.com/googlei18n/noto-fonts
|
NotoNastaliqUrdu-Regular.ttf and NotoSansSymbols-Regular.ttf, from https://github.com/googlei18n/noto-fonts
|
||||||
|
NotoSans-Regular.ttf, from https://www.google.com/get/noto/
|
||||||
NotoSansJP-Thin.otf, from https://www.google.com/get/noto/help/cjk/
|
NotoSansJP-Thin.otf, from https://www.google.com/get/noto/help/cjk/
|
||||||
|
NotoColorEmoji.ttf, from https://github.com/googlefonts/noto-emoji
|
||||||
AdobeVFPrototype.ttf, from https://github.com/adobe-fonts/adobe-variable-font-prototype
|
AdobeVFPrototype.ttf, from https://github.com/adobe-fonts/adobe-variable-font-prototype
|
||||||
TINY5x3GX.ttf, from http://velvetyne.fr/fonts/tiny
|
TINY5x3GX.ttf, from http://velvetyne.fr/fonts/tiny
|
||||||
ArefRuqaa-Regular.ttf, from https://github.com/google/fonts/tree/master/ofl/arefruqaa
|
ArefRuqaa-Regular.ttf, from https://github.com/google/fonts/tree/master/ofl/arefruqaa
|
||||||
ter-x20b.pcf, from http://terminus-font.sourceforge.net/
|
ter-x20b.pcf, from http://terminus-font.sourceforge.net/
|
||||||
|
BungeeColor-Regular_colr_Windows.ttf, from https://github.com/djrrb/bungee
|
||||||
|
|
||||||
All of the above fonts are published under the SIL Open Font License (OFL) v1.1 (http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL), which allows you to copy, modify, and redistribute them if you need to.
|
All of the above fonts are published under the SIL Open Font License (OFL) v1.1 (http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL), which allows you to copy, modify, and redistribute them if you need to.
|
||||||
|
|
||||||
|
OpenSansCondensed-LightItalic.tt, from https://fonts.google.com/specimen/Open+Sans, under Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
|
||||||
|
DejaVuSans-24-{1,2,4,8}-stripped.ttf are based on DejaVuSans.ttf converted using FontForge to add bitmap strikes and keep only the ASCII range.
|
||||||
|
|
||||||
|
|
||||||
10x20-ISO8859-1.pcf, from https://packages.ubuntu.com/xenial/xfonts-base
|
10x20-ISO8859-1.pcf, from https://packages.ubuntu.com/xenial/xfonts-base
|
||||||
|
|
||||||
|
|
BIN
Tests/fonts/NotoColorEmoji.ttf
Normal file
BIN
Tests/fonts/NotoSans-Regular.ttf
Normal file
BIN
Tests/fonts/OpenSansCondensed-LightItalic.ttf
Normal file
|
@ -11,6 +11,7 @@ import tempfile
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from packaging.version import parse as parse_version
|
||||||
|
|
||||||
from PIL import Image, ImageMath, features
|
from PIL import Image, ImageMath, features
|
||||||
|
|
||||||
|
@ -162,6 +163,16 @@ def skip_unless_feature(feature):
|
||||||
return pytest.mark.skipif(not features.check(feature), reason=reason)
|
return pytest.mark.skipif(not features.check(feature), reason=reason)
|
||||||
|
|
||||||
|
|
||||||
|
def skip_unless_feature_version(feature, version_required, reason=None):
|
||||||
|
if not features.check(feature):
|
||||||
|
return pytest.mark.skip(f"{feature} not available")
|
||||||
|
if reason is None:
|
||||||
|
reason = f"{feature} is older than {version_required}"
|
||||||
|
version_required = parse_version(version_required)
|
||||||
|
version_available = parse_version(features.version(feature))
|
||||||
|
return pytest.mark.skipif(version_available < version_required, reason=reason)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skipif(sys.platform.startswith("win32"), reason="Requires Unix or macOS")
|
@pytest.mark.skipif(sys.platform.startswith("win32"), reason="Requires Unix or macOS")
|
||||||
class PillowLeakTestCase:
|
class PillowLeakTestCase:
|
||||||
# requires unix/macOS
|
# requires unix/macOS
|
||||||
|
|
BIN
Tests/images/bitmap_font_1_basic.png
Normal file
After Width: | Height: | Size: 481 B |
BIN
Tests/images/bitmap_font_1_raqm.png
Normal file
After Width: | Height: | Size: 480 B |
BIN
Tests/images/bitmap_font_2_basic.png
Normal file
After Width: | Height: | Size: 661 B |
BIN
Tests/images/bitmap_font_2_raqm.png
Normal file
After Width: | Height: | Size: 658 B |
BIN
Tests/images/bitmap_font_4_basic.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
Tests/images/bitmap_font_4_raqm.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
Tests/images/bitmap_font_8_basic.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
Tests/images/bitmap_font_8_raqm.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
Tests/images/cbdt_notocoloremoji.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
Tests/images/cbdt_notocoloremoji_mask.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
Tests/images/colr_bungee.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
Tests/images/colr_bungee_mask.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 284 B After Width: | Height: | Size: 248 B |
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 199 B |
BIN
Tests/images/imagedraw_arc_high.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 314 B |
Before Width: | Height: | Size: 439 B After Width: | Height: | Size: 428 B |
Before Width: | Height: | Size: 438 B After Width: | Height: | Size: 426 B |
Before Width: | Height: | Size: 439 B After Width: | Height: | Size: 430 B |
Before Width: | Height: | Size: 402 B After Width: | Height: | Size: 404 B |
Before Width: | Height: | Size: 257 B After Width: | Height: | Size: 237 B |
Before Width: | Height: | Size: 324 B After Width: | Height: | Size: 301 B |
BIN
Tests/images/imagedraw_chord_too_fat.png
Normal file
After Width: | Height: | Size: 519 B |
Before Width: | Height: | Size: 488 B After Width: | Height: | Size: 493 B |
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 514 B |
Before Width: | Height: | Size: 427 B After Width: | Height: | Size: 429 B |
Before Width: | Height: | Size: 359 B After Width: | Height: | Size: 318 B |
Before Width: | Height: | Size: 466 B After Width: | Height: | Size: 408 B |
Before Width: | Height: | Size: 602 B After Width: | Height: | Size: 622 B |
BIN
Tests/images/imagedraw_ellipse_various_sizes.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
Tests/images/imagedraw_ellipse_various_sizes_filled.png
Normal file
After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 439 B |
Before Width: | Height: | Size: 477 B After Width: | Height: | Size: 465 B |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 339 B After Width: | Height: | Size: 333 B |
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 267 B |
Before Width: | Height: | Size: 394 B After Width: | Height: | Size: 375 B |
BIN
Tests/images/imagedraw_pieslice_wide.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 496 B After Width: | Height: | Size: 493 B |
Before Width: | Height: | Size: 523 B After Width: | Height: | Size: 519 B |
Before Width: | Height: | Size: 403 B After Width: | Height: | Size: 405 B |
BIN
Tests/images/standard_embedded.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
Tests/images/test_anchor_multiline_lm_center.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_lm_left.png
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
Tests/images/test_anchor_multiline_lm_right.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_ma_center.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_md_center.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_mm_center.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_mm_left.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_mm_right.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_rm_center.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_rm_left.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_multiline_rm_right.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
Tests/images/test_anchor_quick_ls.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
Tests/images/test_anchor_quick_ma.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
Tests/images/test_anchor_quick_mb.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
Tests/images/test_anchor_quick_md.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
Tests/images/test_anchor_quick_mm.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
Tests/images/test_anchor_quick_ms.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
Tests/images/test_anchor_quick_mt.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
Tests/images/test_anchor_quick_rs.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
Tests/images/test_anchor_ttb_f_lt.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
Tests/images/test_anchor_ttb_f_mm.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
Tests/images/test_anchor_ttb_f_rb.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
Tests/images/test_anchor_ttb_f_sm.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
BIN
Tests/images/test_combine_caron.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
Tests/images/test_combine_caron_below.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
Tests/images/test_combine_caron_below_lb.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
Tests/images/test_combine_caron_below_ld.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
Tests/images/test_combine_caron_below_ls.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
Tests/images/test_combine_caron_below_ttb.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
Tests/images/test_combine_caron_below_ttb_lb.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
Tests/images/test_combine_caron_la.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
Tests/images/test_combine_caron_ls.png
Normal file
After Width: | Height: | Size: 3.8 KiB |