| 28 | using namespace openshot; |
| 29 | |
| 30 | QtImageReader::QtImageReader(std::string path, bool inspect_reader) : path{QString::fromStdString(path)}, is_open(false) |
| 31 | { |
| 32 | // Open and Close the reader, to populate its attributes (such as height, width, etc...) |
| 33 | if (inspect_reader) { |
| 34 | Open(); |
| 35 | Close(); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | QtImageReader::~QtImageReader() |
| 40 | { |
no outgoing calls
no test coverage detected