Implementation of FileUtils class.
More...
#include "stdafx.h"
#include <iostream>
#include <TiffUtils.h>
#include "FileUtils.h"
#include "image.h"
#include <map>
#include <boost/algorithm/string/trim.hpp>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
|
|
typedef int(__cdecl * | TIFFWRITESHORT) (const char *, int, int, int, const unsigned short int *, const char *) |
| |
|
typedef int(__cdecl * | TIFFWRITECHAR) (const char *, int, int, int, int, const unsigned char *, const char *) |
| |
|
typedef int(__cdecl * | TIFFOPENWRITEPAGE) (const char *, bool, const unsigned short int *, int, int, unsigned int, int, const char *) |
| |
|
typedef int(__cdecl * | TIFFWRITEPAGE) (const unsigned short int *, int, int, unsigned int, int, const char *) |
| |
|
typedef int(__cdecl * | TIFFGETNUMPAGES) (const char *) |
| |
|
typedef int(__cdecl * | TIFFGETPAGESIZE) (const char *, int, unsigned int *, unsigned int *, unsigned int *) |
| |
|
typedef int(__cdecl * | TIFFOPENREADPAGE) (const char *, int, unsigned short int *, char *) |
| |
|
typedef int(__cdecl * | TIFFREADPAGE) (int, unsigned short int *, char *) |
| |
|
typedef int(__cdecl * | TIFFOPENREADCHARPAGE) (const char *, int, unsigned char *, char *) |
| |
|
typedef int(__cdecl * | TIFFREADCHARPAGE) (int, unsigned char *, char *) |
| |
|
typedef int(__cdecl * | TIFFCLOSEFILE) () |
| |
Implementation of FileUtils class.