Search found 2307 matches

by Alex
Fri Feb 17, 2012 4:04 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Howto set the postion of Textannotation.Textbox
Replies: 2
Views: 6251

Re: Howto set the postion of Textannotation.Textbox

Hello Michael, You can use the PointToControl method of the ImageViewer class and determine coordinates of left-top corner of annotation in the viewer space: Point leftTop = new Point((int)(textAnno.Location.X - textAnno.Size.Width / 2), (int)(textAnno.Location.Y - textAnno.Size.Height / 2)); textBo...
by Alex
Fri Feb 17, 2012 3:51 pm
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: WriterSetting.MinWidth for DataMatrix
Replies: 3
Views: 6392

Re: WriterSetting.MinWidth for DataMatrix

Hello Roman,

It's a limitation in our SDK. We do not recommend to use barcodes with cell width 1.

You can generate barcode with a cell width equal to 1 as follows:
  • Generate barcode in vector form (as graphical path)
  • Scale barcode (graphical path)
  • Print *
Best regards, Alexander
by Alex
Wed Feb 15, 2012 1:17 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: WPF Support
Replies: 7
Views: 14840

Re: WPF Support

No comments. Please be patient, you will not be disappointed. :-)

Best regards, Alexander
by Alex
Wed Feb 15, 2012 10:45 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: WPF Support
Replies: 7
Views: 14840

Re: WPF Support

I think second half. We are trying to do the best.

Best regards, Alexander
by Alex
Wed Feb 15, 2012 10:40 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Annotation's bounding box event
Replies: 1
Views: 5483

Re: Annotation's bounding box event

Hello Jun-hee, Do you want always show Default cursor when you work with annotations? If yes, you should create custom annotations and override the SelectTransformation method: public class MyRectangleAnnotation : RectangleAnnotation { ... protected override TransformationInfo SelectTransformation(P...
by Alex
Wed Feb 15, 2012 10:26 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: WPF Support
Replies: 7
Views: 14840

Re: WPF Support

Hello Mike,

We plan to release WPF version of VintaSoftImaging.NET SDK this year. Release date is not known at the moment.

Best regards, Alexander
by Alex
Tue Feb 14, 2012 4:21 pm
Forum: Announcements
Topic: Version 6.1 of VintaSoftBarcode.NET SDK has been released.
Replies: 9
Views: 10890

Version 6.1 of VintaSoftBarcode.NET SDK has been released.

Version 6.1 of VintaSoftBarcode.NET SDK has been released. What's new in this version: Added ability to read new barcode symbologies: MSI Modified Plessey ISBN (+2/+5), ISSN (+2/+5), ISMN (+2/+5) Added ability to write new barcode symbologies: EAN-8 +2/+5, EAN-13 +2/+5, UPC-A +2/+5, UPC-E +2/+5 MSI ...
by Alex
Fri Feb 10, 2012 5:01 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: Set the AnnotationViewer's Current Image
Replies: 2
Views: 6611

Re: Set the AnnotationViewer's Current Image

Hello Jun-Hee,

Thank you for your message and good description of the problem, we have fixed the problem in version 5.0.5.1 of VintaSoftImaging.NET SDK.

Best regards, Alexander
by Alex
Fri Feb 10, 2012 4:55 pm
Forum: Announcements
Topic: Version 5.0 of VintaSoftImaging.NET SDK has been released.
Replies: 13
Views: 19793

Version 5.0.5.1 of VintaSoftImaging.NET SDK has been released.

Version 5.0.5.1 of VintaSoftImaging.NET SDK has been released. What's new in this version of VintaSoftImaging.NET SDK: Fixed bug in the image viewer - index of focused image is not changed after inserting image in the image collection of viewer. What's new in this version of VintaSoftPDF.NET Plug-in...
by Alex
Thu Feb 09, 2012 1:00 pm
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: unsupported format Old JPEG (in TIFF)
Replies: 8
Views: 14545

Re: unsupported format Old JPEG (in TIFF)

Hello, Here is a snippet of code which shows how to load TIFF image with OldJPEG compression and read barcodes from the image: ' Important: You need Vintasoft.Barcode.dll, ' Vintasoft.Imaging.dll, ' to run this code. Public Shared Sub ReadBarcodesUsingImaging(ByVal filename As String) Dim images As ...