diff --git a/NOTICE.md b/NOTICE.md index b18b2e3..5368946 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -1,4 +1,4 @@ -QPDF is copyright (c) 2005-2021 Jay Berkenbilt, 2022-2025 Jay Berkenbilt and Manfred Holger +qpdf is copyright (c) 2005-2021 Jay Berkenbilt, 2022-2025 Jay Berkenbilt and Manfred Holger Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/README.md b/README.md index 60ea5d3..deda9f6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ render PDFs or perform text extraction, and it does not contain higher-level int It is a low-level tool for working with the structure of PDF files and can be a valuable tool for anyone who wants to do programmatic or command-line-based manipulation of PDF files. -The [qpdf Manual](https://qpdf.readthedocs.io) is hosted online at https://qpdf.readthedocs.io. The project website +The [qpdf manual](https://qpdf.readthedocs.io) is hosted online at https://qpdf.readthedocs.io. The project website is https://qpdf.sourceforge.io. The source code repository is hosted at GitHub: https://github.com/qpdf/qpdf. # Verifying Distributions diff --git a/appimage/qpdf.appdata.xml b/appimage/qpdf.appdata.xml index 59959e3..a8e22d7 100644 --- a/appimage/qpdf.appdata.xml +++ b/appimage/qpdf.appdata.xml @@ -4,29 +4,29 @@ org.QPDF.qpdf.desktop MIT Apache-2.0 - QPDF + qpdf Structural, content-preserving transformations on PDF files -

QPDF is a command-line program that does structural, content-preserving transformations on PDF files. +

qpdf is a command-line program that does structural, content-preserving transformations on PDF files. It could have been called something like pdf-to-pdf. It also provides many useful capabilities to developers of PDF-producing software or for people who just want to look at the innards of a PDF file to learn more about how they work.

-

QPDF is capable of creating linearized (also known as web-optimized) files and encrypted files. +

qpdf is capable of creating linearized (also known as web-optimized) files and encrypted files. It is also capable of converting PDF files with object streams (also known as compressed objects) to files with no compressed objects or to generate object streams from files that don't have them - (or even those that already do). QPDF also supports a special mode designed to allow you to edit + (or even those that already do). qpdf also supports a special mode designed to allow you to edit the content of PDF files in a text editor. For more details, please see the documentation links below.

-

QPDF includes support for merging and splitting PDFs through the ability to copy objects from one PDF - file into another and to manipulate the list of pages in a PDF file. The QPDF library also makes +

qpdf includes support for merging and splitting PDFs through the ability to copy objects from one PDF + file into another and to manipulate the list of pages in a PDF file. The qpdf library also makes it possible for you to create PDF files from scratch. In this mode, you are responsible for - supplying all the contents of the file, while the QPDF library takes care off all the syntactical + supplying all the contents of the file, while the qpdf library takes care off all the syntactical representation of the objects, creation of cross references tables and, if you use them, object streams, encryption, linearization, and other syntactic details.

-

QPDF is not a PDF content creation library, a PDF viewer, or a program capable of converting PDF into - other formats. In particular, QPDF knows nothing about the semantics of PDF content streams. +

qpdf is not a PDF content creation library, a PDF viewer, or a program capable of converting PDF into + other formats. In particular, qpdf knows nothing about the semantics of PDF content streams. If you are looking for something that can do that, you should look elsewhere. - However, once you have a valid PDF file, QPDF can be used to transform that file in ways perhaps + However, once you have a valid PDF file, qpdf can be used to transform that file in ways perhaps your original PDF creation can't handle. For example, programs generate simple PDF files but can't password-protect them, web-optimize them, or perform other transformations of that type.

diff --git a/libqpdf/QPDFJob_argv.cc b/libqpdf/QPDFJob_argv.cc index 6dc1700..829e7aa 100644 --- a/libqpdf/QPDFJob_argv.cc +++ b/libqpdf/QPDFJob_argv.cc @@ -117,7 +117,8 @@ ArgParser::argCopyright() << "\n" << "Copyright (c) 2005-2021 Jay Berkenbilt\n" << "Copyright (c) 2022-2025 Jay Berkenbilt and Manfred Holger\n" - << "QPDF is licensed under the Apache License, Version 2.0 (the \"License\");\n" + << "\n" + << "qpdf is licensed under the Apache License, Version 2.0 (the \"License\");\n" << "you may not use this file except in compliance with the License.\n" << "You may obtain a copy of the License at\n" << "\n" diff --git a/manual/conf.py b/manual/conf.py index 2046028..9ee84be 100644 --- a/manual/conf.py +++ b/manual/conf.py @@ -12,7 +12,7 @@ import sys sys.path.append(os.path.abspath("./_ext")) -project = 'QPDF' +project = 'qpdf' copyright = '2005-2021 Jay Berkenbilt, 2022-2025 Jay Berkenbilt and Manfred Holger' author = 'Jay Berkenbilt' here = os.path.dirname(os.path.realpath(__file__))