Represents an annotation container.
functionlt.Annotations.Engine.AnnContainer
classlt.Annotations.Engine.AnnContainer()
The annotation container is a rectangular area that holds related annotation objects (AnnObject). In typical applications, the container holds the annotation objects for a page in a document. The size of the container is the same as the page, but in annotation units (1/720 of an inch).
AnnContainercontains the following members:
Member | Description |
---|---|
Size,OffsetandPageNumber | Properties of the container:Sizeis the size of the container in annotation units (1/720 of an inch).Offsetis an optional offset value (if the container does not start at 0,0) andPageNumberis the optional 1-based page number of the container |
The object responsible for converting display, container and image coordinates | |
A collection ofAnnObjects. These are the annotation objects that belong in this container. These objects will be rendered when the container is rendered and edited when the container is automated | |
负责特殊注释对象maintaining a list of the objects that are currently selected in the container | |
A collection ofAnnLayers for logically grouping common annotation objects. | |
HitTestPointandHitTestRect | Helper method for performing hit-testing on the container and returning any object under a test point or rectangle. |
IsVisible,StrokeandFill | Optional values (whether it is visible, border stroke, interior filling options) used when rendering this container. |
Optional value indicating whether this container is enabled. If a container is disabled, then it will be used by the automation and considered read-only. | |
Optional labels (for example, map legends) that can be used to overlay fixed text on top of the container. | |
Method for easily resizing a container to a desired size. Has options. |
This example creates a new container, adds a line object and a rectangle object to it, saves it, and then loads it back.
import{ EngineHelper } from"../../utilities/EngineHelper";
exportclassAnnEngine_AnnContainerExample {
constructor() {
consthelper =newEngineHelper();
helper.run(this.run);
}
run = () => {
constinch = 720.0;
// Create a new annotation container, 8.5 by 11 inches
let container: lt.Annotations.Engine.AnnContainer =newlt.Annotations.Engine.AnnContainer();
// Size must be in annotation units (1/720 of an inch)
container.size = lt.LeadSizeD.create(8.5 * inch, 11 * inch);
constshowContainer = (message, container) => {
let str = message +"\nContainer size: ";
/ /添加size
constinch = 720;
constwidth:number= container.size.width / inch;
const高度:number= container.size.height / inch;
str += width +" by "+ height +" inches"+"\n";
/ /添加objects
str +="Contains "+ container.children.count +" objects(s)\n";
for(let i = 0; i < container.children.count; i++) {
constannObj = container.children.item(i);
str +="Object: "+ annObj.get_friendlyName() +" at ";
for(let j = 0; j < annObj.get_points().get_count(); j++) {
constpt: lt.LeadPointD = annObj.points.item(j);
constx:number= pt.x / inch;
consty:number= pt.y / inch;
str +="("+ x +", "+ y +") ";
}
str +="\n";
}
alert(str);
}
// Add a red line object, from 1in 1in to 2in 2in
constlineObj: lt.Annotations.Engine.AnnPolylineObject =newlt.Annotations.Engine.AnnPolylineObject();
lineObj.points.add(lt.LeadPointD.create(1 * inch, 1 * inch));
lineObj.points.add(lt.LeadPointD.create(2 * inch, 2 * inch));
lineObj.stroke = lt.Annotations.Engine.AnnStroke.create(lt.Annotations.Engine.AnnSolidColorBrush.create("red"), lt.LeadLengthD.create(1));
container.children.add(lineObj);
// Add a blue on yellow rectangle from 3in 3in to 4in 4in
constrectObj: lt.Annotations.Engine.AnnRectangleObject =newlt.Annotations.Engine.AnnRectangleObject();
rectObj.rect = lt.LeadRectD.create(3 * inch, 3 * inch, 1 * inch, 1 * inch);
rectObj.stroke = lt.Annotations.Engine.AnnStroke.create(lt.Annotations.Engine.AnnSolidColorBrush.create("blue"), lt.LeadLengthD.create(1));
rectObj.fill = lt.Annotations.Engine.AnnSolidColorBrush.create("yellow");
container.children.add(rectObj);
// Show the container
showContainer("Before save", container);
// Create the codecs object to save and load annotations
constcodecs: lt.Annotations.Engine.AnnCodecs =newlt.Annotations.Engine.AnnCodecs();
// Save the container
constxmlData:string= codecs.save(container, lt.Annotations.Engine.AnnFormat.annotations,null, 1);
// delete the container
container =null;
// Show information about the data we just saved
constinfo: lt.Annotations.Engine.AnnCodecsInfo = codecs.getInfo(xmlData);
let message:string;
if(info.format == lt.Annotations.Engine.AnnFormat.annotations) {
message ="Version: ";
message += info.version;
message +=" No. of pages: ";
message += info.pages.length;
message +=" page nos: ";
for(let i = 0; i < info.pages.length; i++) {
message += info.pages[i] +" ";
}
}
else{
message ="Invalid annotations data";
}
alert(message);
// Load the container we just saved
container = codecs.load(xmlData, 1);
// Show it
showContainer("After load", container);
}
}
import{ EngineHelper } from"../../utilities/EngineHelper";
exportclassAnnEngine_AnnContainerExample {
constructor() {
consthelper =newEngineHelper();
helper.run(this.run);
}
run = () => {
constinch = 720.0;
// Create a new annotation container, 8.5 by 11 inches
let container =newlt.Annotations.Engine.AnnContainer();
// Size must be in annotation units (1/720 of an inch)
container.size = lt.LeadSizeD.create(8.5 * inch, 11 * inch);
constshowContainer = (message, container) => {
let str = message +"\nContainer size: ";
/ /添加size
constinch = 720;
constwidth = container.size.width / inch;
constheight = container.size.height / inch;
str += width +" by "+ height +" inches"+"\n";
/ /添加objects
str +="Contains "+ container.children.count +" objects(s)\n";
for(let i = 0; i < container.children.count; i++) {
constannObj = container.children.item(i);
str +="Object: "+ annObj.get_friendlyName() +" at ";
for(let j = 0; j < annObj.get_points().get_count(); j++) {
constpt = annObj.points.item(j);
constx = pt.x / inch;
consty = pt.y / inch;
str +="("+ x +", "+ y +") ";
}
str +="\n";
}
alert(str);
}
// Add a red line object, from 1in 1in to 2in 2in
constlineObj =newlt.Annotations.Engine.AnnPolylineObject();
lineObj.points.add(lt.LeadPointD.create(1 * inch, 1 * inch));
lineObj.points.add(lt.LeadPointD.create(2 * inch, 2 * inch));
lineObj.stroke = lt.Annotations.Engine.AnnStroke.create(lt.Annotations.Engine.AnnSolidColorBrush.create("red"), lt.LeadLengthD.create(1));
container.children.add(lineObj);
// Add a blue on yellow rectangle from 3in 3in to 4in 4in
constrectObj =newlt.Annotations.Engine.AnnRectangleObject();
rectObj.rect = lt.LeadRectD.create(3 * inch, 3 * inch, 1 * inch, 1 * inch);
rectObj.stroke = lt.Annotations.Engine.AnnStroke.create(lt.Annotations.Engine.AnnSolidColorBrush.create("blue"), lt.LeadLengthD.create(1));
rectObj.fill = lt.Annotations.Engine.AnnSolidColorBrush.create("yellow");
container.children.add(rectObj);
// Show the container
showContainer("Before save", container);
// Create the codecs object to save and load annotations
constcodecs =newlt.Annotations.Engine.AnnCodecs();
// Save the container
constxmlData = codecs.save(container, lt.Annotations.Engine.AnnFormat.annotations,null, 1);
// delete the container
container =null;
// Show information about the data we just saved
constinfo = codecs.getInfo(xmlData);
let message;
if(info.format == lt.Annotations.Engine.AnnFormat.annotations) {
message ="Version: ";
message += info.version;
message +=" No. of pages: ";
message += info.pages.length;
message +=" page nos: ";
for(let i = 0; i < info.pages.length; i++) {
message += info.pages[i] +" ";
}
}
else{
message ="Invalid annotations data";
}
alert(message);
// Load the container we just saved
container = codecs.load(xmlData, 1);
// Show it
showContainer("After load", container);
}
}
"en">
AnnContainer Example | AnnContainer #imageViewerDiv {
border: 1px solid #000000;
width: 800px;
高度:800px;
background-color: #7F7F7F;
}
Either Pan/Zoom or Annotations mode. In annotations mode, drawnewobjects or edit them.
"button"id="exampleButton"value="Example"/>
“imageViewerDiv”/>window.onload = () =>newwindow.examples.AnnContainer.AnnContainerExample();
Help Collections
Raster.NET|C API|C++ Class Library|HTML5 JavaScript
Document.NET|C API|C++ Class Library|HTML5 JavaScript
Medical.NET|C API|C++ Class Library|HTML5 JavaScript
Medical Web Viewer.NET
188宝金博怎么下载
Media Foundation.NET|C API|Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.