Search found 2321 matches

by Alex
Fri Nov 25, 2011 8:24 am
Forum: Announcements
Topic: Version 4.3 of VintaSoftImaging.NET SDK has been released.
Replies: 6
Views: 13797

Version 4.3.40.1 of VintaSoftImaging.NET SDK has been released.

Version 4.3.40.1 of VintaSoftImaging.NET SDK has been released.

What's new in this version of VintaSoftImaging.NET SDK:
  • Fixed bug in rendering algorithm of PDF page.
  • Fixed bug in the SelectedIndices property of the ThumbnailViewer class.
by Alex
Tue Nov 22, 2011 4:32 pm
Forum: Announcements
Topic: Version 6.0 of VintaSoftBarcode.NET SDK has been released.
Replies: 5
Views: 14810

Version 6.0.1.1 of VintaSoftBarcode.NET SDK has been released.

Version 6.0.1.1 of VintaSoftBarcode.NET SDK has been released.

What's new in this version:
  • Added ability to use mixed modes when Code 128 barcode is created.
  • Small fix in barcode reading algorithm.
by Alex
Tue Nov 22, 2011 4:29 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Execute more then one command on ImageProcessingPreview
Replies: 3
Views: 11820

Re: Execute more then one command on ImageProcessingPreview

Hello Steve, Your code has logical mistake. Here is your code: public void ExecuteProcessing(ProcessingCommandBase command) { if (!_enabled) return; // clone preview image // NEXT CODE LINE HAS LOGICAL MISTAKE using (VintasoftImage processedImage = new VintasoftImage(_thumbnail.GetAsBitmap(), false)...
by Alex
Tue Nov 22, 2011 3:51 pm
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: Code 128 mode C
Replies: 3
Views: 11076

Re: Code 128 mode C

Hello Andevia, We have added the ability to use mixed modes when Code 128 barcode is created in version 6.0.1.1 of VintaSoftBarcode.NET SDK. Here is a snippet of code which you must use since version 6.0.1.1: Code128ValueItem part1 = new Code128ValueItem("123", Code128EncodingMode.ModeB); ...
by Alex
Tue Nov 22, 2011 11:43 am
Forum: VintaSoft Twain .NET SDK Discussions
Topic: Auto-detection Page Size Access Violation
Replies: 2
Views: 9546

Re: Auto-detection Page Size Access Violation

Hello Aaron,

The problem is fixed in version 8.0.2.1 of VintaSoftTwain.NET SDK.

Best regards, Alexander
by Alex
Mon Nov 21, 2011 3:44 pm
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: Code 128 mode C
Replies: 3
Views: 11076

Re: Code 128 mode C

Hello,

Barcode writer has built-in algorithm which determines the best compression mode for barcode value. Mode C is used by default for Code 128 barcodes if value of barcode contains even number of digits.

Do you have any problems?

Best regards, Alexander
by Alex
Mon Nov 21, 2011 3:29 pm
Forum: Announcements
Topic: Version 4.3 of VintaSoftImaging.NET SDK has been released.
Replies: 6
Views: 13797

Version 4.3.39.1 of VintaSoftImaging.NET SDK has been released.

Version 4.3.39.1 of VintaSoftImaging.NET SDK has been released.

What's new in this version of VintaSoftImaging.NET SDK:
  • Fixed 2 bugs in rendering algorithm of PDF page.
by Alex
Fri Nov 18, 2011 11:36 am
Forum: Announcements
Topic: Version 8.0 of VintaSoftTwain.NET SDK has been released.
Replies: 4
Views: 12954

Version 8.0.2.1 of VintaSoftTwain.NET SDK has been released.

Version 8.0.2.1 of VintaSoftTwain.NET SDK has been released.

What's new in this version:
  • Scanning algorithm is updated for compatibility with Canon scanners.
by Alex
Fri Nov 18, 2011 8:45 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Change color of thumbnail image when click an image
Replies: 1
Views: 7963

Re: Change color of thumbnail image when click an image

Hello David, FocusedThumbnailAppearance specifies how the focused thumbnail is displayed in the thumbnail viewer. You need to set value of the FocusedThumbnailAppearance.BorderColor property to Blue color. SelectedThumbnailAppearance specifies how the selected thumbnail is displayed in the thumbnail...
by Alex
Thu Nov 17, 2011 8:50 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: SWAP 2 Images
Replies: 3
Views: 9286

Re: SWAP 2 Images

Hello David,

You need to use the Swap method of the ImageCollection class:

Code: Select all

ThumbnailViewer1.Images.Swap(0, 1)
Best regards, Alexander