From 3b4947b8b4a5c6ec9421ade5cc759ca3b947bd67 Mon Sep 17 00:00:00 2001 From: lns Date: Fri, 6 May 2022 11:38:26 +0200 Subject: png support Signed-off-by: lns --- GithubAPI.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'GithubAPI.cpp') diff --git a/GithubAPI.cpp b/GithubAPI.cpp index a60a5c2..9f52e86 100644 --- a/GithubAPI.cpp +++ b/GithubAPI.cpp @@ -1,6 +1,8 @@ #include "GithubAPI.hpp" #include "json.hpp" +#include +#include #include GithubAPI::GithubAPI(std::string username) @@ -44,6 +46,22 @@ size_t GithubAPI::GetAvatarBuffer(std::vector &avatar_buffer) { return avatar_buffer.size(); } +bool GithubAPI::AvatarToFile(std::string filename) { + std::vector avatar_buffer; + + if (GetAvatarBuffer(avatar_buffer) == 0) { + return false; + } + + { + std::ofstream avout(filename, std::ios::out | std::ios::binary); + avout.write((char const *)avatar_buffer.data(), avatar_buffer.size()); + avout.close(); + } + + return true; +} + bool GithubAPI::ResetCURL() { if (curl == nullptr) { return false; -- cgit v1.2.3