已经补充问题描述 ,求工程师和大侠们解释 关于load图片的问题!!!
5楼
工程师您好!
我按照graphic guide的方法将图片读进来,会出错,
运行sample code中的graphic里的 会弹出一个对话框。也是这个问题。
大意是“找不到pdb文件,该文件夹中有名字相同的文件,但不是正确的”
后来看到论坛上有人写的另一种fopen方法
VMINT hcanvas;
VMUINT8 *res, *canvas_buf;
struct frame_prop *img_prop;
hcanvas=LoadImageByName(".//1.jpg");
img_prop=vm_graphic_get_img_property(hcanvas,1);
canvas_buf = vm_graphic_get_canvas_buffer(hcanvas);
vm_graphic_set_clip(0,0,img_prop->width,img_prop->height);
vm_graphic_blt(layer_buf,0,0,canvas_buf,0,0,img_prop->width,img_prop->height,1);
static VMINT LoadImageByName(VMSTR name)
{
VMUINT8 *res;
VMFILE file;
VMUINT nSize;
VMUINT nFileSize;
struct frame_prop *infopic; //IMG 单帧结构体
VMINT img;
file=vm_file_open(vm_ucs2_string(name),MODE_READ,FALSE);
if(file>=0)
{
vm_file_getfilesize(file,&nFileSize);
res=(VMUINT8*)vm_malloc(nFileSize);
vm_file_read(file,res,nFileSize,&nSize);
vm_file_close(file);
img=vm_graphic_load_image(res,nFileSize);//返回画布的句柄
vm_free(res);
}
return img;
}
还是出现同样的问题。http://forum.eepw.com.cn/thread/189704/1
描述的是同样的问题。。。
求解!
我按照graphic guide的方法将图片读进来,会出错,
运行sample code中的graphic里的 会弹出一个对话框。也是这个问题。
大意是“找不到pdb文件,该文件夹中有名字相同的文件,但不是正确的”
后来看到论坛上有人写的另一种fopen方法
VMINT hcanvas;
VMUINT8 *res, *canvas_buf;
struct frame_prop *img_prop;
hcanvas=LoadImageByName(".//1.jpg");
img_prop=vm_graphic_get_img_property(hcanvas,1);
canvas_buf = vm_graphic_get_canvas_buffer(hcanvas);
vm_graphic_set_clip(0,0,img_prop->width,img_prop->height);
vm_graphic_blt(layer_buf,0,0,canvas_buf,0,0,img_prop->width,img_prop->height,1);
static VMINT LoadImageByName(VMSTR name)
{
VMUINT8 *res;
VMFILE file;
VMUINT nSize;
VMUINT nFileSize;
struct frame_prop *infopic; //IMG 单帧结构体
VMINT img;
file=vm_file_open(vm_ucs2_string(name),MODE_READ,FALSE);
if(file>=0)
{
vm_file_getfilesize(file,&nFileSize);
res=(VMUINT8*)vm_malloc(nFileSize);
vm_file_read(file,res,nFileSize,&nSize);
vm_file_close(file);
img=vm_graphic_load_image(res,nFileSize);//返回画布的句柄
vm_free(res);
}
return img;
}
还是出现同样的问题。http://forum.eepw.com.cn/thread/189704/1
描述的是同样的问题。。。
求解!
回复
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
【换取逻辑分析仪】自制底板并驱动ArduinoNanoRP2040ConnectLCD扩展板被打赏47分 | |
【分享评测,赢取加热台】RISC-V GCC 内嵌汇编使用被打赏38分 | |
【换取逻辑分析仪】-基于ADI单片机MAX78000的简易MP3音乐播放器被打赏48分 | |
我想要一部加热台+树莓派PICO驱动AHT10被打赏38分 | |
【换取逻辑分析仪】-硬件SPI驱动OLED屏幕被打赏36分 | |
换逻辑分析仪+上下拉与多路选择器被打赏29分 | |
Let'sdo第3期任务合集被打赏50分 | |
换逻辑分析仪+Verilog三态门被打赏27分 | |
换逻辑分析仪+Verilog多输出门被打赏24分 | |
【分享评测,赢取加热台】使用8051单片机驱动WS2812被打赏40分 |