![]() |
VOOZH | about |
dotnet add package Vintasoft.Imaging.Annotation --version 15.1.0.1
NuGet\Install-Package Vintasoft.Imaging.Annotation -Version 15.1.0.1
<PackageReference Include="Vintasoft.Imaging.Annotation" Version="15.1.0.1" />
<PackageVersion Include="Vintasoft.Imaging.Annotation" Version="15.1.0.1" />Directory.Packages.props
<PackageReference Include="Vintasoft.Imaging.Annotation" />Project file
paket add Vintasoft.Imaging.Annotation --version 15.1.0.1
#r "nuget: Vintasoft.Imaging.Annotation, 15.1.0.1"
#:package Vintasoft.Imaging.Annotation@15.1.0.1
#addin nuget:?package=Vintasoft.Imaging.Annotation&version=15.1.0.1Install as a Cake Addin
#tool nuget:?package=Vintasoft.Imaging.Annotation&version=15.1.0.1Install as a Cake Tool
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.
You can annotate images or document in online VintaSoft ASP.NET Core Annotation Demo: https://demos.vintasoft.com/AspNetCoreAnnotationDemo/
// 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();
}
VintaSoft Imaging .NET SDK is a commercially licensed product.
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. |
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. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 15.1.0.1 | 232 | 6/16/2026 |