已经补充问题描述 ,求工程师和大侠们解释 关于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网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
【笔记】生成报错synthdesignERROR被打赏50分 | |
【STM32H7S78-DK评测】LTDC+DMA2D驱动RGBLCD屏幕被打赏50分 | |
【STM32H7S78-DK评测】Coremark基准测试被打赏50分 | |
【STM32H7S78-DK评测】浮点数计算性能测试被打赏50分 | |
【STM32H7S78-DK评测】Execute in place(XIP)模式学习笔记被打赏50分 | |
每周了解几个硬件知识+buckboost电路(五)被打赏10分 | |
【换取逻辑分析仪】RA8 PMU 模块功能寄存器功能说明被打赏20分 | |
野火启明6M5适配SPI被打赏20分 | |
NUCLEO-U083RC学习历程2-串口输出测试被打赏20分 | |
【笔记】STM32CUBEIDE的Noruletomaketarget编译问题被打赏50分 |