Vintasoft.Imaging.Annotation
15.0.12.1
dotnet add package Vintasoft.Imaging.Annotation --version 15.0.12.1
NuGet\Install-Package Vintasoft.Imaging.Annotation -Version 15.0.12.1
<PackageReference Include="Vintasoft.Imaging.Annotation" Version="15.0.12.1" />
<PackageVersion Include="Vintasoft.Imaging.Annotation" Version="15.0.12.1" />
<PackageReference Include="Vintasoft.Imaging.Annotation" />
paket add Vintasoft.Imaging.Annotation --version 15.0.12.1
#r "nuget: Vintasoft.Imaging.Annotation, 15.0.12.1"
#:package Vintasoft.Imaging.Annotation@15.0.12.1
#addin nuget:?package=Vintasoft.Imaging.Annotation&version=15.0.12.1
#tool nuget:?package=Vintasoft.Imaging.Annotation&version=15.0.12.1
Vintasoft.Imaging.Annotation.dll is the main assembly of VintaSoft Annotation .NET Plug-in and it contains classes for annotating images in .NET.
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 TIFF FILE
// 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 TIFF file into collection
images.Add("sourceTiffFile.tif");
// get 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.TiffEncoder encoder =
new Vintasoft.Imaging.Codecs.Encoders.TiffEncoder();
// specify that annotations must be saved with image collection
encoder.AnnotationsFormat = Vintasoft.Imaging.AnnotationsFormat.VintasoftBinary;
// save image collection synchronously to new file
images.SaveSync("destTiffFile.tif", 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
ARTICLES
- Introduction to image annotating: https://www.vintasoft.com/docs/vsimaging-dotnet/Programming-Annotation-Introduction.html
- Save and load annotations: https://www.vintasoft.com/docs/vsimaging-dotnet/Programming-Annotation-Annotation_Save_Load.html
- WANG annotations: https://www.vintasoft.com/docs/vsimaging-dotnet/Programming-Annotation-Wang_Annotations.html
- How to annotate TIFF file: https://www.vintasoft.com/docs/vsimaging-dotnet/Programming-Annotation-How_To_Annotate_Tiff.html
- How to annotate PDF document: https://www.vintasoft.com/docs/vsimaging-dotnet/Programming-Annotation-How_To_Annotate_Pdf.html
- How to create custom triangle annotation: https://www.vintasoft.com/docs/vsimaging-dotnet/Programming-Annotation-How_To_Create_Custom_Triangle_Annotation.html
- How to create custom mark annotation: https://www.vintasoft.com/docs/vsimaging-dotnet/Programming-Annotation-How_To_Create_Custom_Mark_Annotation.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.Shared (= 4.6.1.1)
-
.NETFramework 4.7.2
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
-
net10.0
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
-
net8.0
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
-
net9.0
- Vintasoft.Imaging (= 15.0.12.1)
- Vintasoft.Shared (= 4.6.1.1)
NuGet packages (16)
Showing the top 5 NuGet packages that depend on Vintasoft.Imaging.Annotation:
| Package | Downloads |
|---|---|
|
Vintasoft.Imaging.Annotation.Web.Services
View and annotate images and PDF documents in web application. A platform-independent web service that allows to annotate an image or PDF document. JavaScript classes and controls for viewing and annotating of images and PDF documents in any HTML5 web browser. |
|
|
Vintasoft.Imaging.Annotation.Dicom
Annotate DICOM images in .NET. Print image with annotations. Rotate image with annotations. Burn annotations on image. Add or insert an annotation into annotation collection. Reorder annotations in annotation collection. Change annotation. Remove an annotation from annotation collection. Undo/redo changes in annotation collection or single annotation. Supported annotation types: Point, Polyline, Text, Arrow, Ellipse, Multiline, Range line, Rectangle. |
|
|
Vintasoft.Imaging.Annotation.Wpf.UI
WPF controls for annotating images and PDF documents. Print annotated images and PDF documents in WPF. |
|
|
Vintasoft.Imaging.Annotation.UI
WinForms controls for annotating images and PDF documents. Print annotated images and PDF documents in WinForms. |
|
|
Vintasoft.Imaging.Annotation.Web.Api2Controllers
View and annotate images and PDF documents in ASP.NET MVC 5 application. ASP.NET Web API 2 controller that allows to annotate an image or PDF document. JavaScript classes and controls for viewing and annotating of images and PDF documents in any HTML5 web browser. |
GitHub repositories
This package is not used by any popular GitHub repositories.