1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
Metadata-Version: 2.4
Name: qpageview
Version: 1.0.3
Summary: Widget to display page-based documents for Qt6/PyQt6
Project-URL: Homepage, https://github.com/frescobaldi/qpageview
Project-URL: Documentation, https://qpageview.org
Project-URL: Issue tracker, https://github.com/frescobaldi/qpageview/issues
Maintainer-email: Wilbert Berendsen <info@frescobaldi.org>
License: GPL v3
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Multimedia :: Graphics
Requires-Python: >=3.7
Requires-Dist: pyqt6>=6.6
Provides-Extra: cups
Requires-Dist: pycups; extra == 'cups'
Description-Content-Type: text/x-rst
The qpageview module
====================
*qpageview* provides a page based document viewer widget for Qt6/PyQt6.
It has a flexible architecture potentionally supporting many formats.
Currently, it supports PDF and SVG documents and several image formats.
.. code-block:: python
import qpageview
from PyQt6.QtWidgets import *
a = QApplication([])
v = qpageview.View()
v.show()
v.loadPdf("path/to/afile.pdf")
a.exec()
`Homepage <https://qpageview.org/>`_ •
`Development <https://github.com/frescobaldi/qpageview>`_ •
`Download <https://pypi.org/project/qpageview/>`_ •
`Documentation <https://qpageview.org/>`_ •
`License <https://www.gnu.org/licenses/gpl-3.0>`_
Features
~~~~~~~~
* Versatile View widget with many optional mixin classes to cater for
anything between basic or powerful functionality.
* Rendering in a background thread, with smart priority control, so display of
large PDF documents remains fast and smooth.
* Almost infinite zooming thanks to tile-based rendering and caching.
* Magnifier glass.
* Printing functionality, directly to cups or via Qt/QPrinter.
* Can display pages originating from different documents at the same time.
* Can show the difference between pages that are almost the same via
color composition.
* And much more! And...all classes are extendable and heavily customizable,
so it is easy to inherit and add any functionality you want.
Dependencies
~~~~~~~~~~~~
* Python 3.7+
* Qt 6.6+
* PyQt6
* pycups (optionally, needed to print to a local CUPS server)
|