2018-04-27 17:21:01 -07:00
|
|
|
# © 2018 James R. Barlow: github.com/jbarlow83
|
|
|
|
#
|
|
|
|
# This file is part of OCRmyPDF.
|
|
|
|
#
|
|
|
|
# OCRmyPDF is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# OCRmyPDF is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with OCRmyPDF. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2018-12-30 00:23:26 -08:00
|
|
|
from os import fspath
|
2019-03-17 14:22:36 -07:00
|
|
|
import os
|
2018-11-02 01:10:10 -07:00
|
|
|
from pickle import dumps, loads
|
2019-03-17 14:22:36 -07:00
|
|
|
from unittest.mock import patch
|
2018-11-02 01:10:10 -07:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
from PIL import Image, ImageChops
|
|
|
|
|
2018-04-27 17:21:01 -07:00
|
|
|
import ocrmypdf.leptonica as lept
|
|
|
|
|
|
|
|
|
|
|
|
def test_colormap_backgroundnorm(resources):
|
|
|
|
# Issue #262 - unclear how to reproduce exactly, so just ensure leptonica
|
|
|
|
# can handle that case
|
2018-06-28 23:37:14 -07:00
|
|
|
pix = lept.Pix.open(resources / 'baiona_colormapped.png')
|
2018-04-27 17:21:01 -07:00
|
|
|
pix.background_norm()
|
2018-11-02 01:10:10 -07:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def crom_pix(resources):
|
|
|
|
pix = lept.Pix.open(resources / 'crom.png')
|
|
|
|
im = Image.open(resources / 'crom.png')
|
2019-09-03 17:19:12 -07:00
|
|
|
yield pix, im
|
|
|
|
im.close()
|
2018-11-02 01:10:10 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_pix_basic(crom_pix):
|
|
|
|
pix, im = crom_pix
|
|
|
|
|
|
|
|
assert pix.width == im.width
|
|
|
|
assert pix.height == im.height
|
|
|
|
assert pix.mode == im.mode
|
|
|
|
|
|
|
|
|
|
|
|
def test_pil_conversion(crom_pix):
|
|
|
|
pix, im = crom_pix
|
|
|
|
|
|
|
|
# Check for pixel perfect
|
|
|
|
assert ImageChops.difference(pix.topil(), im).getbbox() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_pix_otsu(crom_pix):
|
|
|
|
pix, _ = crom_pix
|
|
|
|
im1bpp = pix.otsu_adaptive_threshold()
|
|
|
|
assert im1bpp.mode == '1'
|
|
|
|
|
|
|
|
|
2019-11-20 00:29:48 -08:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
lept.get_leptonica_version() < 'leptonica-1.76',
|
|
|
|
reason="needs new leptonica for API change",
|
|
|
|
)
|
2018-11-02 01:10:10 -07:00
|
|
|
def test_crop(resources):
|
|
|
|
pix = lept.Pix.open(resources / 'linn.png')
|
|
|
|
foreground = pix.crop_to_foreground()
|
|
|
|
assert foreground.width < pix.width
|
|
|
|
|
|
|
|
|
2018-11-06 11:15:02 -08:00
|
|
|
def test_clean_bg(resources):
|
|
|
|
pix = lept.Pix.open(resources / 'congress.jpg')
|
2018-11-02 01:10:10 -07:00
|
|
|
imbg = pix.clean_background_to_white()
|
|
|
|
|
|
|
|
|
|
|
|
def test_pickle(crom_pix):
|
|
|
|
pix, _ = crom_pix
|
|
|
|
pickled = dumps(pix)
|
|
|
|
pix2 = loads(pickled)
|
|
|
|
assert pix.mode == pix2.mode
|
2018-11-02 01:55:25 -07:00
|
|
|
|
|
|
|
|
2019-06-01 01:55:51 -07:00
|
|
|
def test_leptonica_compile(tmp_path):
|
2018-11-02 01:55:25 -07:00
|
|
|
from ocrmypdf.lib.compile_leptonica import ffibuilder
|
|
|
|
|
|
|
|
# Compile the library but build it somewhere that won't interfere with
|
|
|
|
# existing compiled library. Also compile in API mode so that we test
|
|
|
|
# the interfaces, even though we use it ABI mode.
|
2019-06-01 01:55:51 -07:00
|
|
|
ffibuilder.compile(tmpdir=fspath(tmp_path), target=fspath(tmp_path / 'lepttest.*'))
|
2019-03-17 14:22:36 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_with_stderr(capsys):
|
|
|
|
# pytest redirects stderr too; we must disable this for the test to be valid
|
|
|
|
with capsys.disabled():
|
|
|
|
with pytest.raises(FileNotFoundError):
|
|
|
|
lept.Pix.open("does_not_exist1")
|
|
|
|
|
|
|
|
|
|
|
|
def test_without_stderr(capsys):
|
|
|
|
# pytest redirects stderr too; we must disable this for the test to be valid
|
|
|
|
with capsys.disabled():
|
|
|
|
with patch('sys.stderr', new=None):
|
|
|
|
with pytest.raises(FileNotFoundError):
|
|
|
|
lept.Pix.open("does_not_exist2")
|