VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Decoders Namespace / JpegDecodingSettings Class / SubsamplingInterpolationMode Property
Syntax Requirements SeeAlso
In This Topic
SubsamplingInterpolationMode Property (JpegDecodingSettings)
In This Topic
Gets or sets the interpolation mode for subsampled channels of JPEG image.
Syntax
'Declaration

<DescriptionAttribute("The interpolation mode for subsampled channels of JPEG image.")>
<DefaultValueAttribute(None)>
Public Property SubsamplingInterpolationMode As Vintasoft.Imaging.Codecs.ImageFiles.Jpeg.JpegSubsamplingInterpolationMode

[Description("The interpolation mode for subsampled channels of JPEG image.")]
[DefaultValue(None)]
public Vintasoft.Imaging.Codecs.ImageFiles.Jpeg.JpegSubsamplingInterpolationMode SubsamplingInterpolationMode { get; set; }

Property Value

JpegSubsamplingInterpolationMode.None must be used for pictures.

JpegSubsamplingInterpolationMode.NearestNeighbor must be used for images with text. This interpolation mode increases quality of image with text but also increases decoding time.

Default value is JpegSubsamplingInterpolationMode.None.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also