中级会员
- 积分
- 367
- 金钱
- 367
- 注册时间
- 2016-9-27
- 在线时间
- 53 小时
|
发表于 2017-1-19 15:54:06
|
显示全部楼层
/****************************************************
oˉêyÃû£oPrintf_bmp_xy
DÎ2Σo
·μ»ØÖμ£o
oˉêy1|Äü£oÏÔê¾Ö¸¶¨′óD¡μÄí¼Æ¬
****************************************************///
void Printf_bmp_xy(uint32_t x,uint32_t y,uint32_t lenth,uint32_t high,const unsigned char bmp[] )
{
uint32_t color = 0;
uint32_t x0,y0;
for(y0 = 0;y0<high;y0++)
{
for(x0=0;x0<lenth;x0++)
{
color = bmp[(x0+lenth*y0)*2+8]<<8 | bmp[(x0+lenth*y0)*2+1+8];
LCD_DrawPoint(x0+x,y0+y,color);
}
}
}
|
|