Class JpegEncoder
Definition
- Namespace:
- Tizen.Multimedia.Util
- Assembly:
- Tizen.Multimedia.Util.dll
Provides the ability to encode the Joint Photographic Experts Group (JPEG) format images.
public class JpegEncoder : ImageEncoder, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View SourceJpegEncoder()
Initializes a new instance of the JpegEncoder class.
Declaration
public JpegEncoder()
Remarks
OutputFormat will be the Jpeg.
JpegEncoder(int)
Initializes a new instance of the JpegEncoder class with initial quality value.
Declaration
public JpegEncoder(int quality)
Parameters
Type | Name | Description |
---|---|---|
int | quality | The quality for JPEG image encoding; from 1(lowest quality) to 100(highest quality). |
Remarks
OutputFormat will be the Jpeg.
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException |
|
Fields
View SourceDefaultQuality
A read-only field that represents the default value of Quality.
Declaration
public static readonly int DefaultQuality
Field Value
Type | Description |
---|---|
int |
Properties
View SourceQuality
Gets or sets the quality of the encoded image.
Declaration
public int Quality { get; set; }
Property Value
Type | Description |
---|---|
int | The quality of the output image. The default is 75. |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException |
|
Implements
System.IDisposable