
VintaSoftImaging.NET Library
Info
License
FAQ
Examples
History
Download
Buy now


For which purposes can I use the VintaSoftImaging.NET Library?
Library allows to load, view, process, print and save images, work with
multipage TIFF files directly, work with annotations.

From which parts does the library consist?
The library contains:
| Vintasoft.Imaging.dll assembly - a 100% .NET assembly |
| Documentation in CHM format (VintaSoft.Imaging.chm file) |
| Examples for MS Visual Basic.NET, MS Visual C#, ASP.NET (files in the Examples directory) |

In which programming languages can I use the library?
With the Single Developer license or Site license you can use library in:
| Microsoft Visual Studio .NET : Visual Basic, Visual C#, Visual C++, Visual J# |
| Borland Delphi 8.0, Borland C# Builder, Borland C++ BuilderX |
| any other languages which are compatible with .NET Framework. |
With the Server license you can use library in:
| Intranet / internet applications on a server-side (ASP.NET or PHP) |

What restrictions does the unregistered version have?
Unregistered version has the following restrictions:
| nag screen |
| the "Evaluation version" text will be added to all saved or printed images |
| 8-bpp palette or gray images will be saved as 24-bpp color images |
All these restrictions are removed in registered version.

I have problems. What should I do?
Answers to most of questions can be found in the documentation
or in this FAQ.
Please write to our support team to
get more help.

What files do I need to include in the setup package of my program?
You need include only one file: VintaSoft.Imaging.dll. This file must be
placed in the same folder as the assembly that references it. Make sure
that the version you distribute is the version your assembly was
compiled with.

Can I re-distribute the VintaSoft.Imaging.dll with my application without royalties?
Yes, the library is royalty free. You pay only for registration one time.
Only the VintaSoft.Imaging.dll can be re-distributed with your application.
Single Developer license has limitation in re-distribution, please see the
license agreement for more info.

Can I add two image viewers to form of my application and move images between them?
Yes, you can do this. Please see example 5
here.

I cannot open TIFF file using your library. What should I do?
Please send us your "bad" image. We will analyze it and update our
reading algorithm if image is correct.

How can I split multipage TIFF file to many JPEG files?
Here is an example for VB.NET that shows how to do this:
Dim images As ImageCollection = New ImageCollection()
images.Add("multipage.tif")
Dim i As Integer
For i = 0 To images.Count - 1
images(i).Save("page-" + i.ToString() + ".jpg")
Next i
and here is an example for C#:
ImageCollection images = new ImageCollection();
images.Add("multipage.tif");
for (int i = 0; i < images.Count; i++)
{
images[i].Save("page-" + i.ToString() + ".jpg");
}
|