#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); }