annotate 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 |
|
| rev |
line source |
|
1
|
1 #pragma once
|
|
|
2 #include <memory>
|
|
|
3 namespace Gdiplus { class Image; class Bitmap; };
|
|
|
4
|
|
|
5 void SaveImage(Gdiplus::Image* bmp, const TCHAR* out, const TCHAR* format, ULONG quality = 100);
|
|
|
6 void SaveImage( Gdiplus::Bitmap * bmp, const TCHAR * out, const TCHAR * format, ULONG quality = 100);
|
|
|
7 void ConvertImage(const TCHAR * in, const TCHAR * out, const TCHAR * format, ULONG quality = 100);
|
|
|
8 std::unique_ptr<Gdiplus::Bitmap> image16bpcto8(Gdiplus::Bitmap* img); |