hyprgraphics/tests/image.cpp

34 lines
817 B
C++
Raw Normal View History

2024-11-22 16:02:12 +01:00
#include <print>
#include <format>
#include <filesystem>
#include <hyprgraphics/image/Image.hpp>
#include "shared.hpp"
using namespace Hyprgraphics;
bool tryLoadImage(const std::string& path) {
auto image = CImage(path);
if (!image.success()) {
std::println("Failed to load {}: {}", path, image.getError());
return false;
}
std::println("Loaded {} successfully: Image is {}x{} of type {}", path, image.cairoSurface()->size().x, image.cairoSurface()->size().y, image.getMime());
return true;
}
int main(int argc, char** argv, char** envp) {
int ret = 0;
for (auto& file : std::filesystem::directory_iterator("./resource/images/")) {
if (!file.is_regular_file())
continue;
EXPECT(tryLoadImage(file.path()), true);
}
return ret;
}