Vintasoft.Imaging.Annotation.Pdf.UI
15.0.12.1
dotnet add package Vintasoft.Imaging.Annotation.Pdf.UI --version 15.0.12.1
NuGet\Install-Package Vintasoft.Imaging.Annotation.Pdf.UI -Version 15.0.12.1
<PackageReference Include="Vintasoft.Imaging.Annotation.Pdf.UI" Version="15.0.12.1" />
<PackageVersion Include="Vintasoft.Imaging.Annotation.Pdf.UI" Version="15.0.12.1" />
<PackageReference Include="Vintasoft.Imaging.Annotation.Pdf.UI" />
paket add Vintasoft.Imaging.Annotation.Pdf.UI --version 15.0.12.1
#r "nuget: Vintasoft.Imaging.Annotation.Pdf.UI, 15.0.12.1"
#:package Vintasoft.Imaging.Annotation.Pdf.UI@15.0.12.1
#addin nuget:?package=Vintasoft.Imaging.Annotation.Pdf.UI&version=15.0.12.1
#tool nuget:?package=Vintasoft.Imaging.Annotation.Pdf.UI&version=15.0.12.1
Vintasoft.Imaging.Annotation.Pdf.UI.dll assembly is the assembly from VintaSoft Annotation .NET Plug-in and it contains classes for printing of PDF document with Vintasoft annotations using System.Drawing.Common library.
VintaSoft Annotation .NET Plug-in is the add-on for VintaSoft Imaging .NET SDK, which allows to annotate TIFF, PNG, JPEG, DICOM images and PDF documents in .NET.
GENERAL FEATURES
- This is is 100% managed .NET SDK written in C#
- Cross-platform support for Windows x86/x64, Linux x64/ARM64, macOS x64/ARM64
- Load annotations from TIFF, JPEG, JPEG2000 or PNG image file, PDF document, DICOM presentation state file
- Create new collection of annotations
- Change collection of annotations
- Create built-in standard annotation or custom annotation
- Change annotation
- Add comments to annotation
- WPF and WinForms controls, which allow to view, add, delete, and edit annotations on image or PDF document
- WPF and WinForms controls, which allow to view image thumbnails with annotations
- HTML5 controls, which allow to view, add, delete, and edit annotations on image or PDF document in web browser
- HTML5 controls, which allow to view image thumbnails with annotations in web browser
- Print image with annotations
- Rotate image with annotations
- Burn annotations on image
- Save annotations into TIFF, JPEG, JPEG2000 or PNG image file, PDF document, DICOM presentation state file
DEVELOPMENT REQUIREMENTS
- Development environments: Microsoft Visual Studio, Microsoft Studio Code, JetBrains Rider, .NET CLI
- Programming languages: C#, VB.NET, any .NET compatible language
- Development platforms: .NET, WPF, WinForms, ASP.NET
DEPLOYMENT REQUIREMENTS
- Windows (Windows 11/10/8.1/8/7; Windows Server 2025/2022/2019/2016/2012/2008; 32-bit and 64-bit) with .NET 10/9/8/7/6
- Windows (Windows 11/10/8.1/8/7/Vista/XP; Windows Server 2025/2022/2019/2016/2012/2008/2003; 32-bit and 64-bit) with .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5
- Linux (Ubuntu 24/23/22/20/18; Debian 12/11/10/9; Fedora 40/39/38/37/36; OpenSUSE 15; CentOS 9/8/7; Redhate Enterprise Linux 9/8/7; Alpine 3) with .NET 10/9/8/7/6
- macOS (macOS 14/13/12/11/10) with .NET 10/9/8/7/6
ANNOTATE IMAGES AND DOCUMENTS ONLINE
You can annotate images or document in online VintaSoft ASP.NET Core Annotation Demo: https://demos.vintasoft.com/AspNetCoreAnnotationDemo/
ANNOTATE PDF DOCUMENT
// create image collection
using (Vintasoft.Imaging.ImageCollection images = new Vintasoft.Imaging.ImageCollection())
{
// create annotation controller associated with image collection
Vintasoft.Imaging.Annotation.AnnotationDataController annotations =
new Vintasoft.Imaging.Annotation.AnnotationDataController(images);
// load PDF file into collection
images.Add("sourcePdfDocument.pdf");
// get the annotation collection for selected image
Vintasoft.Imaging.Annotation.AnnotationDataCollection imageAnnotations = annotations[images.Count - 1];
// create new annotation
Vintasoft.Imaging.Annotation.RectangleAnnotationData anno =
new Vintasoft.Imaging.Annotation.RectangleAnnotationData();
anno.Size = new System.Drawing.SizeF(300, 300);
anno.FillBrush = new Vintasoft.Imaging.Annotation.AnnotationSolidBrush(System.Drawing.Color.AliceBlue);
anno.Location = new System.Drawing.PointF(0, 0);
// add new annotation into annotation collection
imageAnnotations.Add(anno);
Vintasoft.Imaging.Codecs.Encoders.PdfEncoder encoder =
new Vintasoft.Imaging.Codecs.Encoders.PdfEncoder();
// specify that annotations must be saved with image collection
encoder.AnnotationsFormat = Vintasoft.Imaging.AnnotationsFormat.VintasoftBinary;
// save image collection synchronously to new file
images.SaveSync("destPdfDocument.pdf", encoder);
// clear image collection and dispose images in image collection
images.ClearAndDisposeItems();
}
ONLINE RESOURCES
- Product web page: https://www.vintasoft.com/vsannotation-dotnet-index.html
- FAQ: https://www.vintasoft.com/vsimaging-dotnet-faq.html
- User Guide and API Reference for .NET developer: https://www.vintasoft.com/docs/vsimaging-dotnet/
- User Guide and API Reference for Web developer: https://www.vintasoft.com/docs/vsimaging-dotnet-web/
- Code Examples: https://www.vintasoft.com/vsimaging-dotnet-examples.html
LICENSE
VintaSoft Imaging .NET SDK is a commercially licensed product.
- Get the evaluation license: https://myaccount.vintasoft.com/user/getEvaluationLicense
- Purchase a License: https://www.vintasoft.com/register.html
Getting Help & Support
Have a question or running into an issue? Contact VintaSoft Support or Sales: https://www.vintasoft.com/support.html
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Framework | net35 is compatible. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 3.5
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Imaging.Annotation (= 15.0.12.1)
- Vintasoft.Imaging.Annotation.Pdf (= 15.0.12.1)
- Vintasoft.Imaging.Gdi (= 15.0.12.1)
- Vintasoft.Imaging.Pdf (= 12.0.12.1)
- Vintasoft.Imaging.Pdf.UI (= 12.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
-
.NETFramework 4.7.2
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Imaging.Annotation (= 15.0.12.1)
- Vintasoft.Imaging.Annotation.Pdf (= 15.0.12.1)
- Vintasoft.Imaging.Gdi (= 15.0.12.1)
- Vintasoft.Imaging.Pdf (= 12.0.12.1)
- Vintasoft.Imaging.Pdf.UI (= 12.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
-
net10.0
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Imaging.Annotation (= 15.0.12.1)
- Vintasoft.Imaging.Annotation.Pdf (= 15.0.12.1)
- Vintasoft.Imaging.Gdi (= 15.0.12.1)
- Vintasoft.Imaging.Pdf (= 12.0.12.1)
- Vintasoft.Imaging.Pdf.UI (= 12.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
-
net8.0
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Imaging.Annotation (= 15.0.12.1)
- Vintasoft.Imaging.Annotation.Pdf (= 15.0.12.1)
- Vintasoft.Imaging.Gdi (= 15.0.12.1)
- Vintasoft.Imaging.Pdf (= 12.0.12.1)
- Vintasoft.Imaging.Pdf.UI (= 12.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
-
net9.0
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Imaging.Annotation (= 15.0.12.1)
- Vintasoft.Imaging.Annotation.Pdf (= 15.0.12.1)
- Vintasoft.Imaging.Gdi (= 15.0.12.1)
- Vintasoft.Imaging.Pdf (= 12.0.12.1)
- Vintasoft.Imaging.Pdf.UI (= 12.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.