diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index 5f2bea6a..193a0008 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -4,6 +4,17 @@ RELEASE NOTES OCRmyPDF uses `semantic versioning `_. +v4.3: +===== + +- New feature ``--remove-background`` to detect and erase the background of color and grayscale images +- Better documentation +- Fixed an issue with PDFs that draw images when the raster stack depth is zero +- ocrmypdf can now redirect its output to stdout for use in a shell pipeline + + + This does not improve performance since temporary files are still used for buffering + + Some output validation is disabled in this mode + v4.2.5: ======= diff --git a/ocrmypdf/__main__.py b/ocrmypdf/__main__.py index 8d3e7f28..0fadf424 100755 --- a/ocrmypdf/__main__.py +++ b/ocrmypdf/__main__.py @@ -164,7 +164,7 @@ parser.add_argument( "standard input)") parser.add_argument( 'output_file', - help="output searchable PDF file") + help="output searchable PDF file (or '-' to write to standard output)") parser.add_argument( '-l', '--language', action='append', help="languages of the file to be OCRed (see tesseract --list-langs for "