mirror of
https://github.com/hyprwm/hyprgraphics.git
synced 2024-12-26 21:19:48 +01:00
33 lines
817 B
C++
33 lines
817 B
C++
#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;
|
|
}
|