blob: ad69df031b8f0fbf01a104ee5215d3e119624f22 (
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
41
42
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Authors:
* Daniel Wagenaar <daw@caltech.edu>
*
* Copyright (C) 2012 Authors
*
* Released under GNU GPL v2+, 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);
void readmagick(char const *fn);
};
}
}
}
#endif
|