| Visual Basic (Declaration) | |
|---|---|
Public Enum CodecsAbcQualityFactor Inherits Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public enum CodecsAbcQualityFactor : Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
public enum class CodecsAbcQualityFactor : public Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| Lossless | Lossless compression. This option compresses a 1-bit file and maintains image data unchanged. Highest quality. |
| VirtualLossless | Lossy compression. This option removes image noisy pixels and compresses it at a smaller file size than Lossless. |
| RemoveBorder | Lossy compression. This option removes image border if it exists and compresses it at a smaller file size than VirtualLossless. |
| Enhance | Lossy compression. This option cleans up the image, removes its border if it exists and compresses it at a smaller file size than RemoveBorder. |
| Modified1 | Lossy compression. This option cleans up the image, removes its border if it exists and compresses it at a smaller file size than Enhance. However, it may distort some text or straight lines. |
| Modified1Fast | Same as Modified1 without the border remove or image clean processes. |
| Modified2 | Lossy compression. This option cleans up the image, removes its border if it exists and compresses it at a smaller file size than Modified1. However, it may distort some text or straight lines. Maximum compression. |
| Modified2Fast | Lossy compression. This option compresses the image at a smaller file size than Modified1. However, it may distort some text or straight lines. Maximum compression. |
| Modified3 | Lossy compression. Provides faster encode and decode speed than Modified1 or Modified2. if one exists and compresses it at a smaller file size than Modified1 or Modified2. Provides the maximum compression. |
| Modified3Fast | Same as Modified3 without the border remove or image clean processes. |
For more information and an example, refer to CodecsAbcOptions.Save.
System.Object
System.ValueType
System.Enum
Leadtools.Codecs.CodecsAbcQualityFactor
Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6
Copy Code