Merge image in Python
Python コードを使用して画像をマージするための高速でクロスプラットフォームの Python ライブラリ
Aspose.Slides を使用して画像を画像にマージ
Aspose.Slides for Python via .NET は、プレゼンテーション、画像、およびその他のファイルをマージおよび操作するために使用される強力な Python ライブラリです。画像を画像にマージすると、2 つの画像を効果的に組み合わせて 1 つの画像が得られます。
Pythonで画像を画像にマージする
Using Aspose.Slides for Python via .NET , you can merge image files quickly with just a few lines of code
画像を画像にマージするための 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}.png".format(num=str(sld.slide_number)), drawing.imaging.ImageFormat.png)
Pythonで画像をマージする方法
Install Aspose.Slides for Python via .NET. See Installation .
ライブラリを参照としてプロジェクトに追加します。
プレゼンテーション クラスのインスタンスを作成します。
結合する画像をピクチャ フレームとして読み込みます。
結果の画像を保存します。
PDFファイルをオンラインで結合
他のファイルをマージする
他の形式のファイルを結合して 1 つのファイルにすることもできます