"Open and Save File" ~~~~~~~~~~~~~~~~~~~~ This sample program demonstrates how to use the ImageSDK, separately from the CameraSDK, to open an IIQ file, decompress it and save the decompressed data into a new file. Full Source code ^^^^^^^^^^^^^^^^ .. code-tabs:: .. include-tab:: ../../labels/cppDocumentaionExample2 :language: cpp :title: C++ .. include-tab:: ../../labels/csDocumentaionExample2 :language: csharp :title: C# Decode Methods ^^^^^^^^^^^^^^ When decoding the image through the ImageSDK Decode pipeline (see :ref:`image-decode-pipeline-label`), it is possible to substitute the ``image.Decode(decodeConfig)`` method with the ``decodeConfig.ApplyTo(image)`` method, which yields the same result: .. code-tabs:: .. include-tab:: ../../labels/cppDecode :language: cpp :title: C++ .. code-tab:: csharp :title: C# // Decode image data with default values DecodeConfig decodeConfig = DecodeConfig.Defaults(); SensorBayerOutput decodedImage = decodeConfig.ApplyTo(image);