from __future__ import annotations
from ooodev.draw.filter import export_jpg
[docs]class ExportJpgT(export_jpg.ExportJpgT):
"""
Write Image Export Data for Jpg.
- pixel_width: Pixel Width.
- pixel_height: Pixel Height.
- logical_width: Logical Width - Usually that same as ``pixel_width``.
- logical_height: Logical Height - Usually that same as ``pixel_height``.
- quality: Compression value from ``1`` to ``100``. Higher Quality, larger file size. Default is ``75``.
- color_mode: Color Mode.
"""
pass
[docs]class ExportJpg(export_jpg.ExportJpg):
pass