已经补充问题描述 ,求工程师和大侠们解释 关于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网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
与电子爱好者谈读图二被打赏50分 | |
【FRDM-MCXN947评测】Core1适配运行FreeRtos被打赏50分 | |
【FRDM-MCXN947评测】双核调试被打赏50分 | |
【CPKCORRA8D1B评测】---移植CoreMark被打赏50分 | |
【CPKCORRA8D1B评测】---打开硬件定时器被打赏50分 | |
【FRDM-MCXA156评测】4、CAN loopback模式测试被打赏50分 | |
【CPKcorRA8D1评测】--搭建初始环境被打赏50分 | |
【FRDM-MCXA156评测】3、使用FlexIO模拟UART被打赏50分 | |
【FRDM-MCXA156评测】2、rt-thread MCXA156 BSP制作被打赏50分 | |
【FRDM-MCXN947评测】核间通信MUTEX被打赏50分 |