Added a note
This commit is contained in:
parent
f454af08bb
commit
8f4fa5006b
1 changed files with 3 additions and 1 deletions
|
@ -567,8 +567,10 @@ void ExportImage(const char *fileName, Image image)
|
||||||
{
|
{
|
||||||
// NOTE: Getting Color array as RGBA unsigned char values
|
// NOTE: Getting Color array as RGBA unsigned char values
|
||||||
unsigned char *imgData = (unsigned char *)GetImageData(image);
|
unsigned char *imgData = (unsigned char *)GetImageData(image);
|
||||||
|
|
||||||
|
// NOTE: SavePNG() not supported by some platforms: PLATFORM_WEB, PLATFORM_ANDROID
|
||||||
SavePNG(fileName, imgData, image.width, image.height, 4);
|
SavePNG(fileName, imgData, image.width, image.height, 4);
|
||||||
// FIXME ^ this fails on PLATFORM_WEB, what should we do?
|
|
||||||
free(imgData);
|
free(imgData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue