Use our document conversion API to develop high-level, platform independent software in Python. This is a professional software solution to import and export image, HTML, and many other document formats using Python.
Need to convert an image to HTML file programmatically? With Aspose.Words for Python via .NET any developer can easily transform images into HTML format with just a few lines of Python code.
Modern image-processing Python API creates HTML from images with high speed. Test the quality of image to HTML conversion right in a browser. Powerful Python library allows converting pictures to many popular document formats.
The following example demonstrates how to convert an image to HTML in Python.
Follow the easy steps to turn a picture into HTML format. Read an image from the local drive, then simply save it as HTML file, specifying the required document format by HTML extension. For both image reading and HTML writing you can use fully qualified filenames. The output HTML content will be the same as the source image.
pip install aspose-words
Copy
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.png")
doc.save("Output.html")
import aspose.words as aw
doc = aw.Document("Input.png")
doc.save("Output.html")
import aspose.words as aw
doc = aw.Document("Input.png")
save_options = aw.saving.ImageSaveOptions(aw.SaveFormat.html)
for page in range(doc.page_count):
save_options.page_set = aw.saving.PageSet(page)
doc.save(f"Output_{page + 1}.html", save_options)
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.png")
doc.save("Output.html")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
shape = builder.insert_image("Input.png")
shape.get_shape_renderer().save("Output.html", aw.saving.ImageSaveOptions(aw.SaveFormat.html))
We host our Python packages in PyPi repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Python via .NET" to your developer environment.
This package is compatible with Python ≥3.5 and <3.12. If you develop software for Linux, please have a look at additional requirements for gcc and libpython in Product Documentation.
You can convert image to many other file formats: