SatDump 2.0.0-alpha-520736c72
Loading...
Searching...
No Matches
geotiff.h
Go to the documentation of this file.
1#pragma once
2
6
7#include "projection/standard/proj.h"
8#include <tiffio.h>
9
10namespace satdump
11{
12 namespace geotiff
13 {
21 bool try_read_geotiff(proj::projection_t *proj, TIFF *tif);
22
30 bool try_write_geotiff(TIFF *tif, proj::projection_t *proj);
31 } // namespace geotiff
32} // namespace satdump
bool try_read_geotiff(proj::projection_t *proj, TIFF *tif)
Attempts to parse TIFF tags from a GeoTIFF file.
Definition geotiff_read.cpp:8
bool try_write_geotiff(TIFF *tif, proj::projection_t *proj)
Attempts to write TIFF tags to a GeoTIFF file.
Definition geotiff_write.cpp:9