Convert JPG to Image in Python
High-speed and cross-platform Python Library that helps in developing applications with the ability to create, merge, inspect, or convert Microsoft PowerPoint and OpenOffice presentation files without the use of any software like Microsoft or Open Office, Adobe PDF.
Convert JPG to Image in Python
Aspose.Slides for Python via .NET is a powerful Python library for creating and manipulating presentation files. Moreover, it provides flexible ways to convert JPG to Image. Using Aspose.Slides for Python via .NET, any developer or application can convert JPG to Image files with just a few lines of Python code.
As a modern document processing API, Aspose.Slides for Python exports JPG files to Image file formats quickly. Aspose PowerPoint library allows you to convert JPG to Images and many other file formats
Convert JPG to Image using Python
To convert the JPG to Image, you will need to create Presentation from JPG file and save it as Image.
Python code for converting JPG into Image
import aspose.slides as slides
import aspose.pydrawing as drawing
with slides.Presentation() as pres:
slide = pres.slides[0]
image = pres.images.add_image(drawing.Bitmap(dataDir+ "image.jpg"))
slide.shapes.add_picture_frame(slides.ShapeType.RECTANGLE, 10, 10, 100, 100, image)
for sld in pres.slides:
bmp = sld.get_thumbnail(1, 1)
bmp.save("Slide_{num}.png".format(num=str(sld.slide_number)), drawing.imaging.ImageFormat.png)
How to convert JPG to Image using Aspose.Slides for Python API
These are the steps to convert JPG to Image in Python.
Install Aspose.Slides for Python via .NET .
Add a library reference (import the library) to your Python project.
Open the source JPG files in Python.
Save result as Image file.
Convert JPG To Other Supported Formats
You can also convert JPG and save to other file formats. See all supported formats below