RemoveIsolatedPixels removes all groups of PixelCount isolated pixels.
This can be used to reduce the size of images.
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0
Syntax
C# | Visual Basic | Visual C++ |
public void ResetInfo( int items )
Public Sub ResetInfo ( _ items As Integer _ )
public: void ResetInfo( int items )
Parameters
- items
- Int32
If 0 then all items are cleared. Values for items are a combination (ored) of RstAnnotations, RstDicomTags, RstEXIF, RstICC, RstJPEGMarkers, RstXMP, RstOtherTextMeta.
Examples
CopyC#
// Clear all meta-data IEViewer1.Image.IOParams.ResetInfo(); // Clear meta-data excluding the ICC profile and JPEG_MarkerList IEViewer1.Image.IOParams.ResetInfo( RstAnnotations | RstDicomTags | RstEXIF | RstIPTC | RstXMP | RstOtherTextMeta );