VOOZH about

URL: https://www.nuget.org/packages/Vintasoft.Imaging.Annotation/

⇱ NuGet Gallery | Vintasoft.Imaging.Annotation 15.1.0.1




👁 Image
Vintasoft.Imaging.Annotation 15.1.0.1

dotnet add package Vintasoft.Imaging.Annotation --version 15.1.0.1
 
 
NuGet\Install-Package Vintasoft.Imaging.Annotation -Version 15.1.0.1
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Vintasoft.Imaging.Annotation" Version="15.1.0.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Vintasoft.Imaging.Annotation" Version="15.1.0.1" />
 
Directory.Packages.props
<PackageReference Include="Vintasoft.Imaging.Annotation" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Vintasoft.Imaging.Annotation --version 15.1.0.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Vintasoft.Imaging.Annotation, 15.1.0.1"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Vintasoft.Imaging.Annotation@15.1.0.1
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Vintasoft.Imaging.Annotation&version=15.1.0.1
 
Install as a Cake Addin
#tool nuget:?package=Vintasoft.Imaging.Annotation&version=15.1.0.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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

ARTICLES

LICENSE

VintaSoft Imaging .NET SDK is a commercially licensed product.

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 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Framework net35 net35 is compatible.  net40 net40 was computed.  net403 net403 was computed.  net45 net45 was computed.  net451 net451 was computed.  net452 net452 was computed.  net46 net46 was computed.  net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 is compatible.  net48 net48 was computed.  net481 net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (16)

Showing the top 5 NuGet packages that depend on Vintasoft.Imaging.Annotation:

Package Downloads
Vintasoft.Imaging.Annotation.UI

WinForms controls for annotating images and PDF documents. Print annotated images and PDF documents in WinForms.

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.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.

Version Downloads Last Updated
15.1.0.1 232 6/16/2026
Loading failed