在 Python 中将图像合并为 BMP
用于使用 Python 代码将图像合并为 BMP 文件的高速跨平台 Python 库
使用 Aspose.Slides 将图像合并为 BMP
Aspose.Slides for Python via .NET 是一个强大的 Python 库,用于创建、转换、合并和操作演示文稿、PDF 、图像和其他文件。当您将图像合并为 BMP 时,您实际上是在组合图像以获得单个 BMP 文件。
在 Python 中将图像合并为 BMP
使用 Aspose.Slides for Python via .NET ,只需几行代码即可快速将图像合并到 BMP
将Image合并为BMP的Python代码
import aspose.slides as slides
import aspose.pydrawing as drawing
with slides.Presentation() as pres:
slide = pres.slides[0]
image1 = pres.images.add_image(drawing.Bitmap("image1.png"))
slide.shapes.add_picture_frame(slides.ShapeType.RECTANGLE, 0, 0, 100, 100, image1)
image2 = pres.images.add_image(drawing.Bitmap("image2.png"))
slide.shapes.add_picture_frame(slides.ShapeType.RECTANGLE, 0, 200, 100, 100, image2)
for sld in pres.slides:
bmp = sld.get_thumbnail(1, 1)
bmp.save("Slide_{num}.bmp".format(num=str(sld.slide_number)), drawing.imaging.ImageFormat.bmp)
如何在 Python 中将图像合并为 BMP
通过 .NET 安装 Aspose.Slides for Python。请参阅 安装 。
将库添加为项目中的参考。
创建一个 Presentation 类的实例。
加载要合并为相框的图像。
保存生成的 BMP 文件。
在线合并 PDF 文件
合并其他文件
您还可以合并其他格式的文件以获取单个文件