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