Extensions.SaveJpeg Method
July 26, 2012
Encodes a WriteableBitmap object into a JPEG stream, with parameters for setting the target width and height of the JPEG file.
Assembly: Microsoft.Phone (in Microsoft.Phone.dll)
public static void SaveJpeg( this WriteableBitmap bitmap, Stream targetStream, int targetWidth, int targetHeight, int orientation, int quality )
Parameters
- bitmap
- Type: System.Windows.Media.Imaging.WriteableBitmap
The WriteableBitmap object.
- targetStream
- Type: System.IO.Stream
The image data stream.
- targetWidth
- Type: System.Int32
The target width of the file.
- targetHeight
- Type: System.Int32
The target height of the file.
- orientation
- Type: System.Int32
This parameter is not currently used by this method. Use a value of 0 as a placeholder.
- quality
- Type: System.Int32
This parameter represents the quality of the JPEG photo with a range between 0 and 100, with 100 being the best photo quality. We recommend that you do not fall lower than a value of 70. because JPEG picture quality diminishes significantly below that level.
Note: