91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python如何實現圖像的二進制與base64互轉

發布時間:2022-03-30 16:49:27 來源:億速云 閱讀:582 作者:iii 欄目:開發技術

這篇“Python如何實現圖像的二進制與base64互轉”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Python如何實現圖像的二進制與base64互轉”文章吧。

函數使用

def base64_to_image(base64_code):
    img_data = base64.b64decode(base64_code)
    img_array = numpy.fromstring(img_data, numpy.uint8)
    # img_array = np.frombuffer(image_bytes, dtype=np.uint8) #可選
    image_base64_dec = cv2.imdecode(img_array, cv2.COLOR_RGB2BGR)
    return image_base64_dec
 
def image_to_base64(full_path):
    with open(full_path, "rb") as f:
        data = f.read()
        image_base64_enc = base64.b64encode(data)
        image_base64_enc = str(image_base64_enc, 'utf-8')
    return image_base64_enc
#傳base64    
img_bytes = request.json["img_stream"]
img_cv = base64_to_image(img_bytes)
uuid_str = str(uuid.uuid1())
img_path = uuid_str +".jpg"
cv2.imwrite(img_path,img_cv)

1.圖像轉base64編碼

import cv2
import base64
 
def cv2_base64(image):
    img = cv2.imread(image)
    binary_str = cv2.imencode('.jpg', img)[1].tostring()#編碼
    base64_str = base64.b64encode(binary_str)#解碼
    base64_str = base64_str.decode('utf-8')
    myjson={"bs64":cv2_base64("1.jpg")}
    print(myjson)
    return base64_str

2.圖像轉二進制編碼

import cv2
import base64
 
def cv2_binary(image):
    img = cv2.imread(image)
    binary_str = cv2.imencode('.jpg', img)[1].tostring()#編碼
    print(binary_str)
    # base64_str = base64.b64encode(binary_str)#解碼
    # base64_str = base64_str.decode('utf-8')
    # print(base64_str)
    return binary_str
 
cv2_binary("1.jpg")
# 或者
image_file =r"1.jpg"
image_bytes = open(image_file, "rb").read()
print(image_bytes)# 二進制數據

3.圖像保存成二進制文件并讀取二進制

#   python+OpenCV讀取圖像并轉換為二進制格式文件的代碼
 
# coding=utf-8
'''
Created on 2016年3月24日
使用Opencv讀取圖像將其保存為二進制格式文件,再讀取該二進制文件,轉換為圖像進行顯示
@author: hanchao
'''
import cv2
import numpy as np
import struct
 
image = cv2.imread("1.jpg")
# imageClone = np.zeros((image.shape[0],image.shape[1],1),np.uint8)
 
# image.shape[0]為rows
# image.shape[1]為cols
# image.shape[2]為channels
# image.shape = (480,640,3)
rows = image.shape[0]
cols = image.shape[1]
channels = image.shape[2]
# 把圖像轉換為二進制文件
# python寫二進制文件,f = open('name','wb')
# 只有wb才是寫二進制文件
fileSave = open('patch.bin', 'wb')
for step in range(0, rows):
    for step2 in range(0, cols):
        fileSave.write(image[step, step2, 2])
for step in range(0, rows):
    for step2 in range(0, cols):
        fileSave.write(image[step, step2, 1])
for step in range(0, rows):
    for step2 in range(0, cols):
        fileSave.write(image[step, step2, 0])
fileSave.close()
 
# 把二進制轉換為圖像并顯示
# python讀取二進制文件,用rb
# f.read(n)中n是需要讀取的字節數,讀取后需要進行解碼,使用struct.unpack("B",fileReader.read(1))函數
# 其中“B”為無符號整數,占一個字節,“b”為有符號整數,占1個字節
# “c”為char類型,占一個字節
# “i”為int類型,占四個字節,I為有符號整形,占4個字節
# “h”、“H”為short類型,占四個字節,分別對應有符號、無符號
# “l”、“L”為long類型,占四個字節,分別對應有符號、無符號
fileReader = open('patch.bin', 'rb')
imageRead = np.zeros(image.shape, np.uint8)
for step in range(0, rows):
    for step2 in range(0, cols):
        a = struct.unpack("B", fileReader.read(1))
        imageRead[step, step2, 2] = a[0]
for step in range(0, rows):
    for step2 in range(0, cols):
        a = struct.unpack("b", fileReader.read(1))
        imageRead[step, step2, 1] = a[0]
for step in range(0, rows):
    for step2 in range(0, cols):
        a = struct.unpack("b", fileReader.read(1))
        imageRead[step, step2, 0] = a[0]
 
fileReader.close()
cv2.imshow("source", image)
cv2.imshow("read", imageRead)
cv2.imwrite("2.jpg",imageRead)
cv2.waitKey(0)

4.二進制轉圖像

def binary_cv2(bytes):
    file = open("4.jpg","wb")
    file.write(bytes)
 
binary_cv2("bytes")
#或者
from PIL import Image
import io
img = Image.open(io.BytesIO("bytes"))
img.save("5.jpg")

5.base64轉圖像

def base64_cv2(base64code):
    img_data = base64.b64decode(base64code)
    file = open("2.jpg","wb")
    file.write(img_data)
    file.close()
 
base64_cv2("base64code")
============================================
with open("1.txt","r") as f:
    img_data = base64.b64decode(f.read())
    file = open("3.jpg","wb")
    file.write(img_data)
    file.close()

6.互轉

def base64_to_image(base64_code):
    img_data = base64.b64decode(base64_code)
    img_array = numpy.fromstring(img_data, numpy.uint8)
    image_base64_dec = cv2.imdecode(img_array, cv2.COLOR_RGB2BGR)
    return image_base64_dec #圖像矩陣,需要cv2.imwrite寫入cv2.imwrite("1.jpg",img)
 
def image_to_base64(full_path):
    with open(full_path, "rb") as f:
        data = f.read()
        image_base64_enc = base64.b64encode(data)
        image_base64_enc = str(image_base64_enc, 'utf-8')
    return image_base64_enc

7.二進制轉base64

def binary_base64(binary):
    img_stream = base64.b64encode(binary)
    bs64 = img_stream.decode('utf-8')
    print(bs64)

8.base64轉二進制

import base64
 
bs64 = ""
img_data = base64.b64decode(bs64)
print(img_data)

以上就是關于“Python如何實現圖像的二進制與base64互轉”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

叙永县| 崇文区| 屏山县| 苍梧县| 长宁区| 吉林省| 河池市| 沈阳市| 隆子县| 绥滨县| 长宁县| 尖扎县| 连江县| 琼海市| 仪陇县| 云林县| 清徐县| 宝应县| 应城市| 平原县| 鄄城县| 祁门县| 兰考县| 乌拉特后旗| 台安县| 长治市| 伊通| 璧山县| 茂名市| 栖霞市| 淳安县| 平谷区| 丁青县| 新昌县| 香港| 班戈县| 西丰县| 台湾省| 杭州市| 临澧县| 康马县|