在 C# 中合併圖像

強大的跨平台 .NET API,用於在 NET Framework、.NET Core、Windows Azure、Mono 或 Xamarin 平台上使用 C# 代碼合併圖像

使用 Aspose.Slides 將圖像合併到圖像

Aspose.Slides for .NET 是一個功能強大的 .NET 庫,用於合併和操作演示文稿、圖像和其他文件。將圖像合併到圖像時,實際上是將兩幅圖像組合成一張照片。

在 C# 中將圖像合併到圖像

使用 Aspose.Slides for .NET ,只需幾行代碼即可快速合併圖像文件

用於將圖像合併到圖像的 C# 代碼

using (Presentation pres = new Presentation())
{
    IPPImage image = pres.Images.AddImage(File.ReadAllBytes("imagepath1"));
    pres.Slides[0].Shapes.AddPictureFrame(ShapeType.Rectangle, 0, 0, 360, 540, image);

    IPPImage image2 = pres.Images.AddImage(File.ReadAllBytes("imagepath2"));
    pres.Slides[0].Shapes.AddPictureFrame(ShapeType.Rectangle, 360, 0, 360, 540, image2);

    pres.Slides[0].GetThumbnail(new Size(960, 720)).Save("merged-image.png", ImageFormat.Png);
}

如何在C#中合併圖像

  1. 安裝 Aspose.Slides for .NET。請參閱 安裝

  2. 添加庫作為項目中的引用。

  3. 創建一個 Presentation 類的實例。

  4. 加載要合併為相框的圖像。

  5. 保存生成的圖像。

在線合併 PDF 文件

如何在 Python 中合併 PDF

合併其他文件

您還可以合併其他格式的文件以獲得單個文件