This documentation is for the old version. Go to the latest Graphics Mill docs

LosslessJpegTransform.Write Method (Stream)

Writes the JPEG file to the specified stream without changes.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub Write ( _
	stream As Stream _
)
C#
public void Write(
	Stream stream
)

Parameters

stream

Type: System.IO.Stream

The stream where you want to save the result.

Remarks

You can use this method to edit EXIF or IPCT data without recompression of the image. In this case the workflow should the following:

  1. Open the JPEG file using the Open(String) method.
  2. Update EXIF or IPTC data using Exif or Iptc properties.
  3. Save changes in a separate file using this method.

See Also

Reference