文件名称:nimBMP:BMP编码器和解码器
文件大小:745KB
文件格式:ZIP
更新时间:2024-06-15 00:46:14
graphics bmp bmp-encoder bmp-decoder HTML
nimBMP 用Nim编写的BMP编码器和解码器 支持的标准颜色模式: 1位 4位未压缩和压缩 8位未压缩和压缩 16位带色罩 24位 32位带色罩 支持倒置(自上而下)和非倒置模式 支持的颜色转换: 32/24位至1,4,8,24位 自动调色板生成 基本用法 import nimBMP let bmp24 = loadBMP24 ( "image24.bmp" ) # load bmp as RGB 24 bit let bmp32 = loadBMP32 ( "image32.bmp" ) # load bmp as RGBX 32 bit # the default container is string, # if you want the output container is seq[uint8], # you can specify it as second par