Mercurial > foo_out_sdl
view foosdk/sdk/libPPUI/ImageEncoder.h @ 1:20d02a178406 default tip
*: check in everything else
yay
| author | Paper <paper@tflc.us> |
|---|---|
| date | Mon, 05 Jan 2026 02:15:46 -0500 |
| parents | |
| children |
line wrap: on
line source
#pragma once #include <memory> namespace Gdiplus { class Image; class Bitmap; }; void SaveImage(Gdiplus::Image* bmp, const TCHAR* out, const TCHAR* format, ULONG quality = 100); void SaveImage( Gdiplus::Bitmap * bmp, const TCHAR * out, const TCHAR * format, ULONG quality = 100); void ConvertImage(const TCHAR * in, const TCHAR * out, const TCHAR * format, ULONG quality = 100); std::unique_ptr<Gdiplus::Bitmap> image16bpcto8(Gdiplus::Bitmap* img);
