Python实现生成bmp图像的方法
更新时间:2021年06月12日 10:36:38 作者:WA的一声哭出来 pnq
本文主要介绍了Python实现生成bmp图像的方法,对大家的学习具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
之前使用过c、java、go语言实现过生成纯色BMP图片的功能。
现在由python语言完成该功能。
from array import array class bmp: """ bmp data structure """ def __init__(self, w=1080, h=1920, color = 0xffffff): self.w = w self.h = h self.gen_bmp_header() self.paint_bgcolor(color) def calc_data_size (self): if((self.w*3)%4 == 0): self.dataSize = self.w * 3 * self.h else: self.dataSize = (((self.w * 3) // 4 + 1) * 4) * self.h self.fileSize = self.dataSize + 54 def conv2byte(self, l, num, len): tmp = num for i in range(len): l.append(tmp & 0x000000ff) tmp >>= 8 def gen_bmp_header (self): self.calc_data_size(); self.bmp_header = [0x42, 0x4d] self.conv2byte(self.bmp_header, self.fileSize, 4) #file size self.conv2byte(self.bmp_header, 0, 2) self.conv2byte(self.bmp_header, 0, 2) self.conv2byte(self.bmp_header, 54, 4) #rgb data offset self.conv2byte(self.bmp_header, 40, 4) #info block size self.conv2byte(self.bmp_header, self.w, 4) self.conv2byte(self.bmp_header, self.h, 4) self.conv2byte(self.bmp_header, 1, 2) self.conv2byte(self.bmp_header, 24, 2) #888 self.conv2byte(self.bmp_header, 0, 4) #no compression self.conv2byte(self.bmp_header, self.dataSize, 4) #rgb data size self.conv2byte(self.bmp_header, 0, 4) self.conv2byte(self.bmp_header, 0, 4) self.conv2byte(self.bmp_header, 0, 4) self.conv2byte(self.bmp_header, 0, 4) def print_bmp_header (self): length = len(self.bmp_header) for i in range(length): print("{:0>2x}".format(self.bmp_header[i]), end=' ') if i%16 == 15: print('') print('') def paint_bgcolor(self, color=0xffffff): self.rgbData = [] for r in range(self.h): self.rgbDataRow = [] for c in range(self.w): self.rgbDataRow.append(color) self.rgbData.append(self.rgbDataRow) def paint_line(self, x1, y1, x2, y2, color): k = (y2 - y1) / (x2 - x1) for x in range(x1, x2+1): y = int(k * (x - x1) + y1) self.rgbData[y][x] = color def paint_rect(self, x1, y1, w, h, color): for x in range(x1, x1+w): for y in range(y1, y1+h): self.rgbData[y][x] = color def paint_point(self, x, y, color=0x000000): self.rgbData[y][x] = color def save_image(self, name="save.bmp"): f = open(name, 'wb') #write bmp header f.write(array('B', self.bmp_header).tobytes()) #write rgb data zeroBytes = self.dataSize // self.h - self.w * 3 for r in range(self.h): l = [] for i in range(len(self.rgbData[r])): p = self.rgbData[r][i] l.append(p & 0x0000ff) p >>= 8 l.append(p & 0x0000ff) p >>= 8 l.append(p & 0x0000ff) f.write(array('B', l).tobytes()) for i in range(zeroBytes): f.write(bytes([0x00])) #close file f.close() if __name__ == '__main__': image = bmp(35, 35) for i in range(35): image.paint_point(i, i, 0xff0000) image.save_image("save1.bmp") import os os.system("save1.bmp")
到此这篇关于Python实现生成bmp图像的方法的文章就介绍到这了,更多相关Python生成bmp图像内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
python GUI库图形界面开发之PyQt5下拉列表框控件QComboBox详细使用方法与实例
这篇文章主要介绍了python GUI库图形界面开发之PyQt5下拉列表框控件QComboBox详细使用方法与实例,需要的朋友可以参考下2020-02-02Python jieba分词添加自定义词和去除不需要长尾词的操作方法
这篇文章主要介绍了Python jieba分词如何添加自定义词和去除不需要长尾词,主要介绍jieba的基础用法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2023-03-03Python名片管理系统+猜拳小游戏案例实现彩(色控制台版)
这篇文章主要介绍了Python名片管理系统+猜拳小游戏案例实现彩(色控制台版),文章围绕主题展开详细的内容介绍,具有一定的参考价值,感兴趣的小伙伴可以参考一下2022-08-08Python2与python3中 for 循环语句基础与实例分析
Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串,也是python中比较常用的一个函数,这里通过基础与实例给大家分享一下2017-11-11
最新评论