blob: c42260f7d677466b8fcc7f1c75eca258850f1e2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
* Authors:
* Daniel Wagenaar <daw@caltech.edu>
*
* Copyright (C) 2012 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef IMAGE_RESOLUTION_H
#define IMAGE_RESOLUTION_H
namespace Inkscape {
namespace Extension {
namespace Internal {
class ImageResolution {
public:
ImageResolution(char const *fn);
bool ok() const;
double x() const;
double y() const;
private:
bool ok_;
double x_;
double y_;
private:
void readpng(char const *fn);
void readexif(char const *fn);
void readexiv(char const *fn);
void readjfif(char const *fn);
};
}
}
}
#endif
|