From 6b347e7310c501b826785e9639d962ba1d448b4b Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 23 Sep 2020 00:56:54 +0200 Subject: Add matrix image upload --- include/ImageUtils.hpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'include/ImageUtils.hpp') diff --git a/include/ImageUtils.hpp b/include/ImageUtils.hpp index 58eb197..f5f757e 100644 --- a/include/ImageUtils.hpp +++ b/include/ImageUtils.hpp @@ -3,7 +3,13 @@ #include "Path.hpp" namespace QuickMedia { - // Works with jpg, png and gif files - bool image_get_resolution(const Path &path, int *width, int *height); + enum class ImageType { + JPG, + PNG, + GIF + }; + + // Works with jpg, png and gif files. |image_type| can be NULL + bool image_get_resolution(const Path &path, int *width, int *height, ImageType *image_type = nullptr); bool is_image_ext(const char *ext); } \ No newline at end of file -- cgit v1.2.3