41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
# SPDX-FileCopyrightText: 2023 James R. Barlow
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""Simple CLI for testing HOCR."""
|
|
|
|
import argparse
|
|
|
|
from ocrmypdf.hocrtransform import HocrTransform
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description='Convert hocr file to PDF')
|
|
parser.add_argument(
|
|
'-b',
|
|
'--boundingboxes',
|
|
action="store_true",
|
|
default=False,
|
|
help='Show bounding boxes borders',
|
|
)
|
|
parser.add_argument(
|
|
'-r',
|
|
'--resolution',
|
|
type=int,
|
|
default=300,
|
|
help='Resolution of the image that was OCRed',
|
|
)
|
|
parser.add_argument(
|
|
'-i',
|
|
'--image',
|
|
default=None,
|
|
help='Path to the image to be placed above the text',
|
|
)
|
|
parser.add_argument('hocrfile', help='Path to the hocr file to be parsed')
|
|
parser.add_argument('outputfile', help='Path to the PDF file to be generated')
|
|
args = parser.parse_args()
|
|
|
|
hocr = HocrTransform(hocr_filename=args.hocrfile, dpi=args.resolution)
|
|
hocr.to_pdf(
|
|
out_filename=args.outputfile,
|
|
image_filename=args.image,
|
|
)
|