Function nitf_rs::read_nitf

source ·
pub fn read_nitf(path: &Path) -> Nitf
Expand description

Construct a Nitf object from a file path.

Example

use std::path::Path;
let nitf_path = Path::new("../example.nitf");
let nitf = nitf_rs::read_nitf(nitf_path);