Search found 2317 matches

by Alex
Mon Jan 23, 2012 6:53 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Change/Override Image Loading Path (XMP)
Replies: 5
Views: 7958

Re: Change/Override Image Loading Path (XMP)

I think i've found my answer, i'm going through the annotationcollection and for ReferencedImageAnnotation.Image i'm using the method SetImage to get the image from the database. Is that a good way of using the SDK? It's a good way but not the best. The best way is create annotation class derived f...
by Alex
Mon Jan 23, 2012 2:55 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: New features request for version 3.0 of VintaSoftPDF.NET
Replies: 6
Views: 11824

New features request for version 3.0 of VintaSoftPDF.NET

The following features are being considered for inclusion in version 3.0 of VintaSoftPDF.NET Plug-in (version 6.0 of VintasoftImaging.NET SDK):
  • Ability to create searchable PDF documents.
If you have some idea or suggestion, please write it here.
by Alex
Mon Jan 23, 2012 2:46 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: New features request for version 5.1 of VintaSoftImaging.NET
Replies: 0
Views: 16054

New features request for version 5.1 of VintaSoftImaging.NET

The following features are being considered for inclusion in version 5.1 of VintaSoftImaging.NET SDK: Ability to preview images of unlimited size Ability to get part of image from decoder Ability to get scaled image from decoder BigTIFF read/write support If you have some idea or suggestion, please ...
by Alex
Mon Jan 23, 2012 2:39 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Change/Override Image Loading Path (XMP)
Replies: 5
Views: 7958

Re: Change/Override Image Loading Path (XMP)

Hello Sami, Yes, you can store image and annotations separately. Annotation collection associated with the image can be loaded from file or stream using the AnnotationCollection.Load method: AnnotationViewer.Annotations[0].Load(streamWithAnnotations); Annotation collection associated with the image ...
by Alex
Wed Jan 18, 2012 12:55 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Problem Viewing Text Annotation
Replies: 6
Views: 10409

Re: Problem Viewing Text Annotation

Hello Michael,

We have found the bug in decoding text of WANG annotation. Bug will be fixed in shortest time.

Best regards, Alexander
by Alex
Wed Jan 18, 2012 11:59 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Problem Viewing Text Annotation
Replies: 6
Views: 10409

Re: Problem Viewing Text Annotation

Hello Michael,

What version of SDK do you use? Please try to use version 5.0 and let me know results.

Best regards, Alexander
by Alex
Wed Jan 18, 2012 11:57 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: How can I see Vinta Elements in ToolBox? (VS2008)
Replies: 1
Views: 4848

Re: How can I see Vinta Elements in ToolBox? (VS2008)

Hello, You need do the following steps: Start Visual Studio.NET with your own project Open the main form in design view Open Toolbox pane Right mouse click on the Toolbox pane Select "Customize Toolbox..." menu item from popup menu Open .NET Framework Components tab Click "Browse...&q...
by Alex
Wed Jan 18, 2012 10:50 am
Forum: VintaSoft Twain .NET SDK Discussions
Topic: New features request for version 8.1 of VintaSoftTwain.NET
Replies: 0
Views: 10113

New features request for version 8.1 of VintaSoftTwain.NET

The following features are being considered for inclusion in version 8.1 of VintaSoftTwain.NET SDK:
  • Multi-streaming feature of Kodak scanners.
If you have some idea or suggestion, please write it here.
by Alex
Tue Jan 17, 2012 9:33 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Problem Viewing Text Annotation
Replies: 6
Views: 10409

Re: Problem Viewing Text Annotation

Hello Michael, We have tested German characters in current version of SDK and we have not found any problems. Our steps: Open Annotation Demo Open image Add stamp annotation to the image with "Möglichkeit über" text - characters shown correctly Save annotation to binary/XML format Remove a...
by Alex
Thu Jan 12, 2012 4:53 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Size of an StampAnnotation
Replies: 5
Views: 11608

Re: Size of an Stampannotation

Hello Michael,

Here is a code snippet for VB.NET:

Code: Select all

Dim pageIndex As Integer = 0
annotationViewer1.Annotations(pageIndex).Add(ann)
and here is a code snippet for C#:

Code: Select all

int pageIndex = 0;
annotationViewer1.Annotations[pageIndex].Add(ann);
Best regards, Alexander