Imagise.PhotoAlbumMaker
24.9.1
dotnet add package Imagise.PhotoAlbumMaker --version 24.9.1
NuGet\Install-Package Imagise.PhotoAlbumMaker -Version 24.9.1
<PackageReference Include="Imagise.PhotoAlbumMaker" Version="24.9.1" />
paket add Imagise.PhotoAlbumMaker --version 24.9.1
#r "nuget: Imagise.PhotoAlbumMaker, 24.9.1"
// Install Imagise.PhotoAlbumMaker as a Cake Addin #addin nuget:?package=Imagise.PhotoAlbumMaker&version=24.9.1 // Install Imagise.PhotoAlbumMaker as a Cake Tool #tool nuget:?package=Imagise.PhotoAlbumMaker&version=24.9.1
Imagise.PhotoAlbumMaker plugin for .NET
** Create an photo album with ease by merging multiple images or photos into a unified multi-frame or multi-page layout. This flexible tool supports a wide range of input image formats and effortlessly produces popular multi-page output formats such as PDF, TIFF, and DICOM.**
Platform Independence
Imagise.PhotoAlbumMaker plugin for .NET can be used to develop applications on Windows Desktop (x86, x64), Windows Server (x86, x64), Windows Azure, Windows Embedded (CE 6.0 R2), as well as Linux x64. The supported platforms include .Net6.0, .Net7.0, .Net8.0.
New Features & Enhancements in Version 24.9
Imagise.PhotoAlbumMaker is live.
Getting Started with Imagise.PhotoAlbumMaker plugin for .NET
Ready to try the Imagise.PhotoAlbumMaker plugin for .NET? You can easily add the Imagise.PhotoAlbumMaker NuGet package to your .NET application by running the following command in the Package Manager Console in Visual Studio:
Install-Package Imagise.PhotoAlbumMaker
If you already have Imagise.PhotoAlbumMaker installed and want to upgrade to the latest version, simply run:
Update-Package Imagise.PhotoAlbumMaker
This will ensure you have the most up-to-date version.
The following examples can guide you in creating a photo album within your application.
Create Pdf Album
var images = new List<Image>();
foreach (var fileName in Directory.GetFiles(inputPath))
{
var image = Image.Load(Path.Combine(inputPath, fileName));
images.Add(image);
}
try
{
using (var image = Imagise.Core.Creator.Image.Create(images.ToArray()))
{
image.Save(outputPath, new PdfOptions());
}
}
finally
{
images.ForEach(image => image.Dispose());
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Newtonsoft.Json (>= 13.0.1)
- System.Text.Encoding.CodePages (>= 7.0.0)
-
net8.0
- Newtonsoft.Json (>= 13.0.1)
- System.Text.Encoding.CodePages (>= 7.0.0)
GitHub repositories
This package is not used by any popular GitHub repositories.