有关图像显示问题

2019-03-24 15:32发布

请教下各位大大:怎样能实现利用一张图片做一个界面背景,在这个背景上绘制Checkbox、Container等? 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
5条回答
zyc1
1楼-- · 2019-03-24 17:19
你先调入一张屏幕尺寸大小的图片,然后再画其他的图形和文字之类的就可以了啊
永远的不知
2楼-- · 2019-03-24 18:36
< :TI_MSP430_内容页_SA7 --> 可以是使用Canvas的功能,注意增加CANVAS_STYLE_IMG属性,将背景图像放到g_pucImage数组里,下面的代码我是在Stellarisware的hello_widget例程里修改的,
g_pucImage[]数组是用pnmtoc转换成的图片数据,我试过了可以实现您说的功能,您可以试试。
//*****************************************************************************
//
// The canvas widget acting as the background to the display.
//
//*****************************************************************************
Canvas(g_sBackground, WIDGET_ROOT, 0, &g_sHeading,
       &g_sLcd240x320x16_8bit, 0, 23, 320, (240 - 23),
       CANVAS_STYLE_FILL | CANVAS_STYLE_IMG, ClrBlack, 0, 0, 0, 0, g_pucImage, 0);
//*****************************************************************************
//
// The button used to hide or display the "Hello World" message.
//
//*****************************************************************************
RectangularButton(g_sPushBtn, &g_sHeading, 0, 0,
                  &g_sLcd240x320x16_8bit, 60, 60, 200, 40,
                  (PB_STYLE_OUTLINE | PB_STYLE_TEXT_OPAQUE | PB_STYLE_TEXT |
                   PB_STYLE_FILL | PB_STYLE_RELEASE_NOTIFY),
                   ClrDarkBlue, ClrBlue, ClrWhite, ClrWhite,
                   &g_sFontCmss22b, "Show Welcome", 0, 0, 0, 0, OnButtonPress);
永远的不知
3楼-- · 2019-03-24 20:05
 精彩回答 2  元偷偷看……
kshark343
4楼-- · 2019-03-24 21:25
可以请教下TI grlib widget的问题么
永远的不知
5楼-- · 2019-03-24 23:08
有什么问题您说。

一周热门 更多>

相关问题

    相关文章