stuff-from-scratch/src/image/win32/Win32WicImageWriter.h
2023-01-11 17:34:40 +00:00

9 lines
No EOL
204 B
C++

#pragma once
#include "PlatformImageWriter.h"
class Win32WicImageWriter : public PlatformImageWriter
{
public:
void write(const Path& path, Image* image, ImgFormat format = ImgFormat::PNG) override;
};