Search found 2319 matches

by Alex
Tue Jan 17, 2012 9:33 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Problem Viewing Text Annotation
Replies: 6
Views: 10431

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: 11634

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
by Alex
Thu Jan 12, 2012 4:49 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Thumbnailviwer image
Replies: 1
Views: 8052

Re: Thumbnailviwer image

Hello John,

Yes, this is possible. You need to create an ImageCollection which will store images of multipage file and add only one image from the collection to the thumbnail viewer.

Best regards, Alexander
by Alex
Thu Jan 12, 2012 4:11 pm
Forum: Announcements
Topic: Version 5.0 of VintaSoftImaging.NET SDK has been released.
Replies: 13
Views: 20045

Version 5.0.1.7 of VintaSoftImaging.NET SDK has been released.

Version 5.0.1.7 of VintaSoftImaging.NET SDK has been released. What's new in this version of VintaSoftImaging.NET SDK: Increased speed of TIFF decoder in multi-threading mode when progress indicator is used. Fixed bug in magnifier. Fixed bug in BMP decoder. What's new in this version of VintaSoftPDF...
by Alex
Wed Dec 28, 2011 12:45 pm
Forum: Announcements
Topic: Version 8.0 of VintaSoftTwain.NET SDK has been released.
Replies: 4
Views: 12860

Version 8.0.3.1 of VintaSoftTwain.NET SDK has been released.

Version 8.0.3.1 of VintaSoftTwain.NET SDK has been released.

What's new in this version:
  • Some minor fixes in scanning algorithm.
by Alex
Mon Dec 26, 2011 4:15 pm
Forum: Announcements
Topic: Version 5.0 of VintaSoftImaging.NET SDK has been released.
Replies: 13
Views: 20045

Version 5.0.1.5 of VintaSoftImaging.NET SDK has been released.

Version 5.0.1.5 of VintaSoftImaging.NET SDK has been released. What's new in this version of VintaSoftImaging.NET SDK: Fixed bug in JPEG encoder. Improved perfomance of JPEG encoder. What's new in this version of VintaSoftJPEG2000.NET Plug-in: Fixed bug - previous versions work only in .NET 2.0 SP2 ...
by Alex
Mon Dec 26, 2011 4:11 pm
Forum: Announcements
Topic: Version 6.0 of VintaSoftBarcode.NET SDK has been released.
Replies: 5
Views: 14634

Version 6.0.3.3 of VintaSoftBarcode.NET SDK has been released.

Version 6.0.3.3 of VintaSoftBarcode.NET SDK has been released.

What's new in this version:
  • Fixed bug in reading algorithm of GS1 Expanded barcodes.
by Alex
Fri Dec 23, 2011 4:15 pm
Forum: Announcements
Topic: Version 5.0 of VintaSoftImaging.NET SDK has been released.
Replies: 13
Views: 20045

Version 5.0.1.3 of VintaSoftImaging.NET SDK has been released.

Version 5.0.1.3 of VintaSoftImaging.NET SDK has been released. What's new in this version of VintaSoftImaging.NET SDK: Fixed bug with centering of image in the image viewer. Fixed bug in PNG encoder. Improved TIFF decoder (CCITT3 and CCITT4 compressions). What's new in this version of VintaSoftPDF.N...
by Alex
Thu Dec 22, 2011 4:55 pm
Forum: Announcements
Topic: Version 6.0 of VintaSoftBarcode.NET SDK has been released.
Replies: 5
Views: 14634

Version 6.0.3.1 of VintaSoftBarcode.NET SDK has been released.

Version 6.0.3.1 of VintaSoftBarcode.NET SDK has been released.

What's new in this version:
  • Added MSI (Modified Plessey) reader and writer.
by Alex
Thu Dec 22, 2011 3:01 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Size of an StampAnnotation
Replies: 5
Views: 11634

Re: Size of an Stampannotation

Hello Michael, Now you should add annotation to the annotation collection of image and later change size of annotation if necessary. Here is a snippet of code: Dim ann As New StampAnnotation() ann.Text = "Rubber stamp" ann.ZOrder = _zOrder ann.Size = New SizeF(450, 800) _zOrder += 1 Try an...