Shows how to use xtd::drawing::image class with icns image.
#include <xtd/diagnostics/process>
#include <xtd/drawing/bitmap>
#include <xtd/io/path>
#include "../properties/resources.h"
auto main()->int {
auto bmp = image_icns::properties::resources::gammasoft_icns().to_bitmap();
bmp.save(path::combine(path::get_temp_path(), "image_icns.png"));
process::start(path::combine(path::get_temp_path(),
"image_icns.png"));
}