PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。的Image
模塊提供了一個具有相同名稱的類,用於表示PIL圖像。該模塊還提供了許多出廠函數,包括從文件加載圖像和創建新圖像的函數。
Image.tobytes()
將圖像作為字節對象返回
用法: Image.tobytes(encoder_name=’raw’, *args)
參數:
encoder_name-使用什麽編碼器。默認值為使用標準“raw”編碼器。
args-編碼器的額外參數。
返回值:一個字節對象。
使用的圖片:
# Importing Image module from PIL package
from PIL import Image
# creating a image object
img = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
# using tobytes
img.tobytes("xbm", "rgb")
print(img)
輸出:
PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=259x194 at 0x2D39DED2BE0
另一個示例:此處使用相同的圖像,但編碼器名稱更改為十六進製。
使用的圖片:
# Importing Image module from PIL package
from PIL import Image
# creating a image object
img = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
# using tobytes
img.tobytes("hex", "rgb")
print(img)
輸出:
PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=259x194 at 0x27845B91BE0
相關用法
- Python Numpy matrix.tobytes()用法及代碼示例
- Python Numpy recarray.tobytes()用法及代碼示例
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python os.get_blocking()用法及代碼示例
- Python os.link()用法及代碼示例
- Python os.getcwdb()用法及代碼示例
- Python os.symlink()用法及代碼示例
- Python os.chroot()用法及代碼示例
- Python os.set_blocking()用法及代碼示例
- Python os.major()用法及代碼示例
- Python getattr()用法及代碼示例
- Python os.lchflags()用法及代碼示例
注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | tobytes() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。