[SDK][INCLUDE] Add Gdiplus::Image::~Image (#2174)

Gdiplus::Image had no dtor. CORE-16566
This commit is contained in:
Katayama Hirofumi MZ 2019-12-26 11:25:48 +09:00 committed by GitHub
parent 1ee511a10c
commit 3f9e695061
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,6 +47,11 @@ public:
return newImage;
}
virtual ~Image()
{
DllExports::GdipDisposeImage(image);
}
static Image *FromFile(const WCHAR *filename, BOOL useEmbeddedColorManagement = FALSE)
{
return new Image(filename, useEmbeddedColorManagement);