aboutsummaryrefslogtreecommitdiff
path: root/include/ImageUtils.hpp
blob: 58eb1977bf32525140d7cc78bf07d24349e524cf (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include "Path.hpp"

namespace QuickMedia {
    // Works with jpg, png and gif files
    bool image_get_resolution(const Path &path, int *width, int *height);
    bool is_image_ext(const char *ext);
}