参见英文答案 >
Open and save base64 encoded image data URI in Ruby 4个
我有base64编码的图像数据.我正在粘贴前几个字符
我有base64编码的图像数据.我正在粘贴前几个字符
string='data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD /2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopG R8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChmoghYaKCgoKCgoKCgoKCgoKCgoKCgo......'
我正在ruby中跟踪它
decoded_string=Base64.decode64 string output_file = Tempfile.new(['image','.jpeg']) output_file.binmode output_file.write image
在此之后,当我打开’image.jpeg’时,它给出了错误
Error interpreting JPEG image file (Not a JPEG file: starts with 0x75 0xab)
我也试过了
File.open('a.jpeg','wb') do|f| f.write decoded_string end
我究竟做错了什么?
解决方法
File.open('shipping_label.gif','wb') do|f| f.write(Base64.decode64(base_64_encoded_data)) end