We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2023-06-22 10:22 AM
Hello!
Is there a way to save a NewDisplay::NativeImage into a file?
Thanks.
2023-06-22 10:55 PM
You can create a GX::Image from a NewDisplay::NativeImage, and then save it to a file.
Something like this:
GX::Image textureImage (nativeImage);
FTM::GeneralID pngType = FTM::FileTypeManager::SearchForMime ("image/png", nullptr);
textureImage.WriteToFile (resultFileLocation, pngType);
2023-06-23 04:30 AM
Thank you!