VintaSoft Imaging .NET SDK 12.4: 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
    
    <DefaultValueAttribute(None)>
    <DescriptionAttribute("The interpolation mode for subsampled channels of JPEG image.")>
    Public Property SubsamplingInterpolationMode As Vintasoft.Imaging.Codecs.ImageFiles.Jpeg.JpegSubsamplingInterpolationMode
    
    
    [DefaultValue(None)]
    [Description("The interpolation mode for subsampled channels of JPEG image.")]
    public Vintasoft.Imaging.Codecs.ImageFiles.Jpeg.JpegSubsamplingInterpolationMode SubsamplingInterpolationMode { get; set; }
    
    
    [DefaultValue(None)]
    [Description("The interpolation mode for subsampled channels of JPEG image.")]
    public: __property Vintasoft.Imaging.Codecs.ImageFiles.Jpeg.JpegSubsamplingInterpolationMode get_SubsamplingInterpolationMode();
    public: __property void set_SubsamplingInterpolationMode(
    Vintasoft.Imaging.Codecs.ImageFiles.Jpeg.JpegSubsamplingInterpolationMode value
    );

    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 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also