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
If you work with the single image file only and want to load image(s) from file, change image(s) and save it(them) to the same file, you should do the following steps...Yes, you are right. Version 4.0 of library allows to load, change and save image to the same file, please wait only some days. :-)
If viewer.FocusedImage.IsChanged = True Then
viewer.FocusedImage.Save(filename)
End If
Any idea on how long until the release of 4.1?Version 4.1 will be available in 1-2 weeks.
Vintasoft.Imaging.Codecs.Encoders.TiffEncoder teTest;
this.imageViewer1.Images.Add(@"c:\test\test.tif", false);
this.imageViewer1.Images[0].Rotate(90);
teTest = new Vintasoft.Imaging.Codecs.Encoders.TiffEncoder();
teTest.SaveAndSwitchSource = true;
this.imageViewer1.Images.SaveSync(@"c:\test\test.tif", teTest);
This code runs to the last statement, where it blocks the execution (dead lock?). When i set "SaveAndSwitchSource" to false, i get the In-Use-Exception. Changing the code to FileStream-usage as in the linked example results in the same blocking behaviour.