Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 719 Bytes

README.rst

File metadata and controls

38 lines (24 loc) · 719 Bytes

pydocx-resize-images

Overview

An mixin for PyDocX that resize all the images when converting from .docx to .html

Requirements

  • Python 2.7
  • Works on Linux, Windows, Mac OSX, BSD

Install

The quick way:

pip install pydocxresizeimages

Usage

Here is an example of mixin usage:

from pydocx.export import PyDocXHTMLExporter
from pydocxresizeimages import ResizedImagesExportMixin

class PyDocXHTMLExporterWithResizedImages(ResizedImagesExportMixin, PyDocXHTMLExporter):
    pass

docx_path = 'path/to/file/doc.docx'
exporter = PyDocXHTMLExporterWithResizedImages(docx_path)

html = exporter.export()