.. _doxcsid-class_p1_1_1_image_sdk_1_1_decode_config: DecodeConfig Class ~~~~~~~~~~~~~~~~~~ Definition ^^^^^^^^^^ *Namespace:* ``P1.ImageSdk`` Defines a set of decoding flags, that can be used on a raw image :ref:`More...` .. ref-code-block:: csharp :class: doxyrest-overview-code-block public class DecodeConfig .. _csdetails-class_p1_1_1_image_sdk_1_1_decode_config: Remarks ^^^^^^^ Defines a set of decoding flags, that can be used on a raw image This class lets you configure decoding options and decode an raw image. You obtain an instance of this class be using :ref:`RawImage.Decode `. After calls to decoding option methods like :ref:`BlackLeveling `, you must call :ref:`ApplyTo ` to trigger the actual decoding. This class handles only decoding and/or decompressing raw image data, not raw convertion. For raw converyion see :ref:`ConvertConfig `. // Simple one-liner raw file decompression, and custom static calibration var rawBitmap = new :ref:`DecodeConfig() `.BlackLeveling(:ref:`BlackClamp.Default `, :ref:`DigitalOffset.Keep `).AppleTo(new :ref:`RawImage ` ("some-file.iiq")); .. rubric:: See also: :ref:`RawImage.Decode ` Constructors ^^^^^^^^^^^^ .. toctree:: :hidden: DecodeConfig .. list-table:: :widths: 30 70 * - :ref:`DecodeConfig() ` - Creates a new decoding options object, with no options configured Properties ^^^^^^^^^^ .. toctree:: :hidden: BlackClamp DigitalOffset .. list-table:: :widths: 30 70 * - :ref:`BlackClamp ` - * - :ref:`DigitalOffset ` - Methods ^^^^^^^ .. toctree:: :hidden: BlackLeveling ApplyTo Defaults .. list-table:: :widths: 33 67 * - :ref:`BlackLeveling(BlackClamp clamp=ImageSdk.BlackClamp.On, DigitalOffset digitalOffset=DigitalOffset.Default) ` - Control how to calibrate pixel's black point, using black clamping and digital offset * - :ref:`ApplyTo(RawImage image, Func\< UInt32, byte[]> allocFunction=null) ` - Trigger decoding of the applied options on the raw-image and return a new image as a RAW data bitmap * - :ref:`Defaults() ` - Returns a predefined config object, with sensibel options enabled already