Updates EXIF thumbnail with the content of current image.

You should call this method just before save a jpeg to make thumbnail consistent with saved image.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void UpdateEXIFThumbnail()
Public Sub UpdateEXIFThumbnail
public:
void UpdateEXIFThumbnail()

Examples

CopyC#
IEViewer1.Image.LoadImage("input.jpg");
IEViewer1.Image.Negative();
IEViewer1.Image.IOParams.UpdateEXIFThumbnail();
IEViewer1.Image.SaveImage("output.jpg");

See Also