2019-02-10 00:50:21 -08:00
|
|
|
# © 2019 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/>.
|
|
|
|
|
2019-02-10 01:52:31 -08:00
|
|
|
import os
|
2019-02-10 00:50:21 -08:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2019-06-12 17:52:25 -07:00
|
|
|
import ocrmypdf
|
2019-02-10 00:50:21 -08:00
|
|
|
import pikepdf
|
|
|
|
|
2019-05-22 23:53:48 -07:00
|
|
|
os_environ = pytest.helpers.os_environ
|
2019-02-10 01:52:31 -08:00
|
|
|
|
|
|
|
|
2019-06-13 01:16:56 -07:00
|
|
|
def test_no_glyphless_graft(resources, outdir):
|
2019-02-10 01:52:31 -08:00
|
|
|
pdf = pikepdf.open(resources / 'francais.pdf')
|
|
|
|
pdf_aspect = pikepdf.open(resources / 'aspect.pdf')
|
|
|
|
pdf_cmyk = pikepdf.open(resources / 'cmyk.pdf')
|
|
|
|
pdf.pages.extend(pdf_aspect.pages)
|
|
|
|
pdf.pages.extend(pdf_cmyk.pages)
|
|
|
|
pdf.save(outdir / 'test.pdf')
|
|
|
|
|
|
|
|
env = os.environ.copy()
|
2019-04-18 15:12:48 -07:00
|
|
|
env['_OCRMYPDF_MAX_REPLACE_PAGES'] = '2'
|
2019-05-22 23:53:48 -07:00
|
|
|
with os_environ(env):
|
2019-07-07 02:11:44 -07:00
|
|
|
ocrmypdf.ocr(
|
2019-05-22 23:53:48 -07:00
|
|
|
outdir / 'test.pdf', outdir / 'out.pdf', deskew=True, tesseract_timeout=0
|
|
|
|
)
|
2019-05-12 03:36:33 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_links(resources, outpdf):
|
2019-07-07 02:11:44 -07:00
|
|
|
ocrmypdf.ocr(
|
2019-05-22 23:53:48 -07:00
|
|
|
resources / 'link.pdf', outpdf, redo_ocr=True, oversample=200, output_type='pdf'
|
2019-05-12 03:36:33 -07:00
|
|
|
)
|
|
|
|
pdf = pikepdf.open(outpdf)
|
|
|
|
p1 = pdf.pages[0]
|
|
|
|
p2 = pdf.pages[1]
|
|
|
|
assert p1.Annots[0].A.D[0].objgen == p2.objgen
|
|
|
|
assert p2.Annots[0].A.D[0].objgen == p1.objgen
|