Contains JPEG markers

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public JPEGMarkers JPEG_Markers { get; }
Public ReadOnly Property JPEG_Markers As JPEGMarkers
	Get
public:
property JPEGMarkers^ JPEG_Markers {
	JPEGMarkers^ get ();
}

Examples

CopyC#
// remove jpeg markers (XMP and other meta tags)
ieViewer1.Image.LoadImage("input.jpeg");
ieViewer1.Image.IOParams.JPEGMarkers.Clear();
ieViewer1.Image.SaveImage("output.jpg");

See Also