IpatchSLIReader

IpatchSLIReader — Spectralis file reader

Functions

Object Hierarchy

    GObject
    ╰── IpatchSLIReader

Description

Reads a Spectralis SLI or SLC file and loads it into a object tree (IpatchSLI).

Functions

ipatch_sli_reader_new ()

IpatchSLIReader *
ipatch_sli_reader_new (IpatchFileHandle *handle);

Create a new Spectralis file reader

Parameters

handle

Spectralis file handle to parse or NULL to set later

 

Returns

The new Spectralis file reader


ipatch_sli_reader_set_file_handle ()

void
ipatch_sli_reader_set_file_handle (IpatchSLIReader *reader,
                                   IpatchFileHandle *handle);

Set the Spectralis file handle of a Spectralis reader.

Parameters

reader

Spectralis reader object

 

handle

Spectralis file handle

 

ipatch_sli_reader_load ()

IpatchSLI *
ipatch_sli_reader_load (IpatchSLIReader *reader,
                        GError **err);

Load a Spectralis file.

Parameters

reader

Spectralis reader object

 

err

Location to store error info or NULL

 

Returns

New IpatchSLI object with refcount of 1.

[transfer full]