Adding support for GDAL raster images.

This commit is contained in:
Marvin Smith
2014-07-01 16:29:11 -07:00
parent 6bb8c46d9a
commit 14548227ca
16 changed files with 1196 additions and 6 deletions

View File

@@ -212,7 +212,8 @@ enum { IMREAD_UNCHANGED = -1, // 8bit, color or not
IMREAD_GRAYSCALE = 0, // 8bit, gray
IMREAD_COLOR = 1, // ?, color
IMREAD_ANYDEPTH = 2, // any depth, ?
IMREAD_ANYCOLOR = 4 // ?, any color
IMREAD_ANYCOLOR = 4, // ?, any color
IMREAD_LOAD_GDAL = 8 // Use gdal driver
};
enum { IMWRITE_JPEG_QUALITY = 1,