網友評分: 9.7分
Pvr ToBmp是一款非常不錯的圖片格式轉換工具,可以幫助用戶把Pvr格式的文件轉換為BMP格式的圖片文件,使用方便,有需要的朋友不要錯過了。
pvr格式是iOS的顯示芯片可以直接讀取的,不需要經過解析就能直接顯示,所以渲染速度更快,更節省內存。
PVRTC2和PVRTC4是兩種pvr壓縮的圖像格式,他們都是pvr文件。這兩種圖像格式比普通圖像有更快的加載速度和更小的內存占用。
PVRTC4: Compressed format, 4 bits per pixel, ok image quality
PVRTC2: Compressed format, 2 bits per pixel, poor image quality
一般pvr格式文件的圖像格式有:
RGBA8888: 32-bit texture with alpha channel, best image quality
RGBA4444: 16-bit texture with alpha channel, good image quality
RGB565: 16-bit texture without alpha channel, good image quality but no alpha (transparency)
圖像占用內存的公式是:numBytes = width * height * bitsPerPixel / 8
也就是說2048*2048的RGBA8888占用內存16MB,而PVRTC4只占用2MB