1 #include <uf.h> 2 #include <uf_drf.h> 3 4 5 UF_initialize(); 6 7 //插入PNG 8 char* file_name = "D:\\123.png"; 9 double origin[3] = { 50.0, 50.0, 0.0 }; 10 tag_t ImageTag = NULL_TAG; 11 UF_DRF_create_image_from_file(file_name, NULL_TAG, origin, &ImageTag); 12 13 //设置图片高度 14 UF_DRF_set_image_height(ImageTag, 50); 15 //设置图片长度 16 UF_DRF_set_image_width(ImageTag, 100); 17 18 19 UF_terminate(); 20 21 Caesar卢尚宇 22 2019年7月1日
原文地址:https://www.cnblogs.com/nxopen2018/p/11116236.html
时间: 2024-10-10 18:29:34