python Image PNG getpixel R/G/B/A

简介: # python Image PNG getpixel R/G/B/A# # 说明: # 本文主要是记录python中如何使用Image模块进行基本的图像R、G、B、A值得获取。
#                 python Image PNG getpixel R/G/B/A
# #
说明: # 本文主要是记录python中如何使用Image模块进行基本的图像R、G、B、A值得获取。 # 为后续的raspberry pi进行图像处理做验证。 # # 2016-2-10 抚州 崇仁马鞍港上村 曾剑锋 import Image # 加载png图片 img = Image.open("vim-cmd.png") # 输出图像的基本信息 print img.format, img.size, img.mode # 获取图像的 height = img.size[0] width = img.size[1] # 输出图片的像素值 for i in range(0, width): for j in range(0, height): print img.getpixel((i, j)) # 数据输出格式: # (R, G, B, A) # # ...... # (237, 28, 36, 255) # (237, 28, 36, 255) # (215, 63, 69, 255) # (237, 28, 36, 255) # (232, 53, 60, 255) # (237, 237, 237, 255) # (237, 55, 62, 255) # (237, 28, 36, 255) # (237, 28, 36, 255) # (180, 70, 47, 255) # (51, 174, 84, 255) # (123, 123, 123, 255) # (227, 47, 55, 255) # (237, 28, 36, 255) # (168, 168, 168, 255) # (193, 115, 118, 255) # (237, 29, 37, 255) # (237, 28, 36, 255) # (85, 140, 66, 255) # (34, 177, 76, 255)

 

目录
相关文章
|
6月前
|
算法 计算机视觉 Python
【python工具】WebP格式转成JPG、PNG和JPEG
平时在网上搜索图片,另存为时常常遇到 WebP 格式,而非常见的 JPG、PNG、JPEG 格式,所以以此文记录一下WebP的读取和转换方法,希望对大家有所帮助!🥸
|
7月前
|
Python Windows
Python 执行RD命令的问题汇总(无效开关 - “Image“。)
Python 执行RD命令的问题汇总(无效开关 - “Image“。)
96 0
|
计算机视觉 Python
python之jpg和png格式之间的转换
python之jpg和png格式之间的转换
112 0
|
存储 Python
【Python标准库】pillow中Image模块学习
【Python标准库】pillow中Image模块学习
|
前端开发 Java Python
python html转png
日常开发过程中,html可以画出非常好看的效果图,但是很多第三方工具并不支持直接展示html,这就需要通过一些第三方工具将html转换为png。很多第三方jar包在做转换的时候,经常出现转化后因为部分css标签不支持,图片效果错位的情况。本文演示一种python html2image包转换图片的案例。
5516 1
python html转png
|
Python
Python:data:image/png;base64图片编码解码
Python:data:image/png;base64图片编码解码
791 0
|
Python
Python中Image缩放、旋转、翻转等操作
Python中Image缩放、旋转、翻转等操作
82 0
|
Python
Python中,如何使用ImageDraw在Image上绘制粗线?
Python中,如何使用ImageDraw在Image上绘制粗线?
234 0
|
Python
把c的char数组转换为python image的代码
把c的char数组转换为python image的代码
105 0
|
Python
Python:data:image/png;base64图片编码解码
Python:data:image/png;base64图片编码解码
880 0