所以我编写了以下代码,它将图像输入转换为声波输出,它工作得很好。
import wave
try:
#change the file's name and format
image_file = 'image.png'
fin = open(image_file, "rb") #binary read
data = fin.read()
fin.close()
except IOError:
print("Image file %s not found" % imageFile)
raise SystemExit
#Give the name for wav file produced at run time corresponding to the input file
sound_output = wave.open('image.wav', 'w')
sound_output.setparams((2, 2, 44100, 10, 'NONE', 'not compressed'))
hex_str = bytes(data) #convert binary data to string of bytes
sound_output.writeframes(hex_str)
sound_output.close()
现在我想使用该输出波形声音并将其转换回图像和文本(不是原始图像,而是它可以输出的任何图像)。我正在考虑我在上面使用的相同方法,它将波形声音文件作为输入并将其作为二进制数据读取。但后来我不知道如何将二进制数据保存为图像格式(jpg 或 png)和一串文本。任何人都可以帮忙吗?