11-14-2008, 0:01
|
animesh_raj
Joined on 11-13-2008
Posts 10
|
Re: How to print Annotation using Lead Tools
|
 
 
|
|
|
Well I have been using v15 and .NET for it.
My case is that, suppose I have a tiff file named :::
C:\1.tiff and its annotation file D:\1.ann;
C:\2.tiff and its annotation file D:\2.ann;
C:\3.tiff and its annotation file D:\3.ann;
C:\4.tiff and its annotation file D:\4.ann;
Here tiff file and annotation files are stored into two different locations and we have been loading the annotation and tiff file into the container for viewing and manipulating annotations.
Now the user has to perfrom batch printing , ie if the user selects document 1, 2, and 4 we have to print the tiff file along with the annotation over it.
currently we have been doing this for single file by:
AnnPrinter printer = new AnnPrinter();
LoadAnnotations(objAnnVariables._Org_FileName, _container);
printer.Print(this._viewer.Image, this._viewer.Image.Page, this._container, e);
But since multiple documents are selected here , it will not be efficient to load the tiff file and annotation into conatiner and print them.
What I actually want is some method to unite these two files and print muitple documents on fly.
Hope I made it more clear , and solutions would appear soon.
Thanks in advance.
|
|
|
|
|
Report
|
|
|
|