VintaSoft Imaging .NET SDK and Plug-ins Discussions
Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.
Board index < VintaSoft Imaging < VintaSoft Imaging .NET SDK and Plug-ins Discussions
ImageCollection images = new ImageCollection();
string sConvertedFile = @txtbxWorkingfolder.Text + @"\converted\" + sTifFileName;
images.Add(sFullSavedTifFile);
images[0].ConvertToGray();
images.ImageSaved += new ImageSavedEventHandler(images_ImageSaved);
images.Save(sConvertedFile);
Vintasoft.Imaging.Encoders.TiffEncoder tifEncoder = new Vintasoft.Imaging.Encoders.TiffEncoder(true, Vintasoft.Imaging.Tiff.TiffCompression.CCITGroup4);
images.Save(sConvertedFile, tifEncoder);
2. Is there a way to maintain the tiff tags when saving the file after processing it?