由于需要用到液晶屏(320*240)顯示圖片,而且圖片的數量比較多(好幾百張),并且圖片要求保存到16M的SPI FLASH里面,顯然如果不處理 16M的FLASH明顯是放不下去。后來同事說可以用壓縮算法RLE,并且用C#給我做了個小的軟件,壓縮圖片得到RLE壓縮后的數據。
這個算法的缺點是 如果圖片顏色復雜就不好,所以顏色盡量單調些。
1、RLE算法小工具的使用
2、我使用的RLE和上面連接的區別(改進)
3、單片機里面實現的方法
1、RLE算法小工具的使用點擊打開鏈接
這里是小工具的下載地址 http://download.csdn.net/detail/chen244798611/9696253
使用:使用也非常簡單 下載下來RLETest.exe,點擊打開 --》界面就一個按鈕 “壓縮”---》點擊選擇圖片 自動壓縮
提示完成可以看見生成
第一個里面有壓縮前和壓縮后的文件大小對比
最后一個.c文件壓縮后得到一個數據,可以保存到spi flash里面
2、我使用的RLE和上面連接的區別(改進)
由于采用的液晶屏是16位的數據,那么比較可定應該是按照2字節 一個數據的比較,不能采用上面那種1個字節的比較。所以這里做了改進,其他都和上面那篇文章介紹一樣。并且采用的是上面文章介紹的最后一個改進算法,如下
225intRle_Decode_O(unsignedchar*inbuf,intinSize,unsignedchar*outbuf,intonuBufSize)
226{
227unsignedchar*src=inbuf;
228inTI;
229intdecSize=0;
230intcount=0;
231
232while(src《(inbuf+inSize))
233{
234 unsignedcharsign=*src++;
235 intcount=sign&0x3F;
236 if((decSize+count)》onuBufSize)/*輸出緩沖區空間不夠了*/
237 {
238 return-1;
239 }
240 if((sign&0x80)==0x80)/*連續重復數據標志*/
241 {
242 for(i=0;i
243 {
244 outbuf[decSize++]=*src;
245 }
246 src++;
247 }
248 else
249 {
250 for(i=0;i
251 {
252 outbuf[decSize++]=*src++;
253 }
254 }
255}
256
257returndecSize;
258}
3、單片機里面實現的方法
下面是在單片機里面實現的代碼,不過這里一個問題頻繁讀取 刷屏速度比較慢 測試發現要100多MS,后面改進了算法 ,并且采用FATFS管理SPI FLASH 測試發現28ms可以顯示一張圖片(不過顏色不是很復雜 復雜時間會更長)
void lcd_display_image(uint32_t epromoffset)//保存在flsah中的地址
{
uint8_t buf[1024] = {0};//定義緩沖區大小
uint32_t totlelen = 0;//用于保存數據總長度
uint32_t index = 0;//索引
uint8_t temp = 0;//臨時存放數據
uint8_t count = 0;//連續數據個數
uint16_t colour = 0;//保存顏色用如液晶顯示
uint8_t i = 0;
SPI_FLASH_ReadBuffer(buf,epromoffset, 3);//前3個字節保存數據的總長度
epromoffset = epromoffset + 3;//flash 地址偏移3
totlelen = buf[0] 《《 16 “ buf[1] 《《 8 | buf[2];//計算得到總長度
LCD_SetWindows(0,319,0,239);//320 240 設置LCD顯示區域
while(index 《 totlelen)//判斷 索引和文件總長度 退出的條件
{
SPI_FLASH_ReadBuffer(buf,epromoffset, 1);//讀數據
epromoffset++;//flash 地址自加
temp = buf[0];//得到讀取的數據
index++;//索引自加
count = temp & 0x7f;//得到連續的個數
if((temp & 0x80) == 0x80)//判斷是否是相同 還是不同的 連續
{
SPI_FLASH_ReadBuffer(buf,epromoffset, 2);//相同連續 讀取兩個字節
epromoffset = epromoffset + 2;
index = index + 2;
colour = buf[0] 《《 8 | buf[1];//組合成顏色 RGB 565
for(i = 0;i 《 count;i++)
{
LCD_RAM = colour;//顯示 FSMC
}
}
else//不相同 連續
{
//SPI_FLASH_ReadBuffer(buf,epromoffset, count *2);
//讀取 count*2個數據 2個數據組成一個顏色數據 count 個顏色數據 所以要*2
SPI_DMA_FLASH_ReadBuffer_1(epromoffset,buf,count *2);
epromoffset = epromoffset + count * 2;//地址偏移
index = index + count * 2;
for(i = 0; i 《 count * 2;i= i+2)
{
LCD_RAM = buf[i] 《《 8 | buf[i+1];//顯示
}
}
}
index = 0;
}
改進后的單片機程序
void SPI_Flash_lcd_Fatfs_image(const char *filename)//文件名
{
uint8_t buf[piece_size] = {0};//開辟一個大的緩沖區
uint32_t epromoffset = 0;
uint32_t totlelen = 0;
uint32_t index = 0;
uint8_t temp = 0;
uint32_t num = 0;
uint8_t count = 0;
uint16_t colour = 0;
uint8_t i = 0,j = 0;
uint16_t write_buf = 0;
uint16_t read_buf = 0;
SPI_Flash_ReadFileData_add(filename,buf,epromoffset,3,&num);//讀取總長度 采用FATFA
epromoffset = epromoffset + 3;
totlelen = buf[0] 《《 16 | buf[1] 《《 8 | buf[2];
LCD_SetWindows(0,319,0,239);//320 240
while(index 《 totlelen)
{
if(totlelen - index 》 piece_size)
{
SPI_Flash_ReadFileData_add(filename,buf,epromoffset,piece_size,&num);//讀取數據保存到緩沖區
epromoffset = epromoffset + piece_size;
read_buf = piece_size;
index = index + piece_size;
}
else
{
SPI_Flash_ReadFileData_add(filename,buf,epromoffset,totlelen - index,&num);
epromoffset = epromoffset + totlelen - index;
read_buf = totlelen - index;
index = totlelen;
}
while(write_buf 《 read_buf)
{
temp = buf[write_buf];
write_buf++;
count = temp & 0x7f;
if((temp & 0x80) == 0x80)
{
if((read_buf- write_buf) 》 2)
{
colour = buf[write_buf] 《《 8 | buf[write_buf+1];
write_buf = write_buf + 2;
}
else
{
write_buf = write_buf + 2;
}
for(i = 0;i 《 count;i++)
{
LCD_RAM = colour;
}
}
else
{
count = count *2;
j = 0;
for(i = 0; i 《 count ;i= i+2)
{
if((read_buf - write_buf) 》 2)
{
colour = buf[write_buf] 《《 8 | buf[write_buf+1];
LCD_RAM = colour;
write_buf = write_buf +2;
}
else
{
SPI_Flash_ReadFileData_add(filename,buf,epromoffset + j,2,&num);//這里有點問題 需要改進 假如緩沖區數據讀完 就會出現點問題
j = j + 2;
LCD_RAM =buf[0] 《《 8 | buf[1];
write_buf = write_buf +2;
}
}
}
}
write_buf= write_buf %piece_size;
}
}
這個程序還有點小
來源;21ic