当前位置:网站首页>为什么图片传输要使用base64编码
为什么图片传输要使用base64编码
2022-07-04 12:51:00 【诗人不写诗】
一、背景知识
一般使用HTTP协议,传输的是字符文本或二进制数据,这2种场景覆盖了几乎所有使用HTTP协议的场景。HTTP协议规定,使用Content-Type请求头来约定传输消息的类型,这决定了请求方如何组织数据(编码和格式)以及接收方如何解析数据。Content-Type常用的取值有如下几种:
1、application/x-www-form-urlencoded
这种方式发送的数据在url上拼接,以key1=val1&key2=val2 的方式进行编码,key和val都进行了 URL转码,这是一种表单提交方式,表单意思是有多个值。
2、multipart/form-data
从名字上看,传输的数据是多份的,且是表单的格式,这种方式其实是一个功能强大的方式,几乎可以满足所有数据传输要求,只是使用起来不太直接,所以我们只使用这种方式来提交文件,因为文件只能以字节流的形式传输,以传输一个文件为例,需要一个key,可以命名为myFile,然后需要定义value 类型和内容,类型是fille,内容就是文件字节流。服务方需要先根据myFIle取出文件,然后根据类型解析。
3、application/json
这种方式将数据以json格式组织,放在body里发送。
4、text/xml
这种方式将数据以xml格式组织,放在body里发送,这种格式逐渐被json取代,因为,json格式更加简洁明了。
二、实际使用
我们在传输图片时,有可能是前后端交互,有可能是2个后端交互,处理方式通常不同,由于前端负责界面交互,在发送HTTP请求时通常具备丰富的Content-Type,所以前端在发送图片时,就会使用multipart/form-data这种方式,这也是前后端默认的规则。
但是在2个后端进行交互时,默认的数据格式是application/json,所以对图片这种数据就要进行转化,通常,我们在得到了图片的字节流byte[ ]后,不会在json中直接传输byte[ ],因为担心传输过程中,有服务对其进行隐式编码然后解码,这就导致字节流发生了变化,所以我们在传输源头就进行base64编码,因为base64使用的ASCII编码是所有编码方式都支持的,即使传输过程中有服务对其进行编解码,也能原样还原。所以使用base64编码是一种安全策略,但是base64会导致体积增大约三分之一。
另外,base64也是浏览器直接支持的一种格式。如下可以直接展示。
边栏推荐
- Secretary of Homeland Security of the United States: domestic violent extremism is one of the biggest terrorist threats facing the United States at present
- 程序员的焦虑
- 瑞吉外卖笔记
- What is the real meaning and purpose of doing things, and what do you really want
- 锐成芯微冲刺科创板:年营收3.67亿拟募资13亿 大唐电信是股东
- 吃透Chisel语言.11.Chisel项目构建、运行和测试(三)——Chisel测试之ScalaTest
- Use the default route as the route to the Internet
- CVPR 2022 | greatly reduce the manual annotation required for zero sample learning, and propose category semantic embedding rich in visual information (source code download)
- 数据仓库面试问题准备
- Assertion of unittest framework
猜你喜欢

中邮科技冲刺科创板:年营收20.58亿 邮政集团是大股东

CVPR 2022 | 大幅减少零样本学习所需的人工标注,提出富含视觉信息的类别语义嵌入(源代码下载)...

【FAQ】华为帐号服务报错 907135701的常见原因总结和解决方法

苹果5G芯片研发失败:继续依赖高通,还要担心被起诉?

Doctoral application | West Lake University Learning and reasoning system laboratory recruits postdoctoral / doctoral / research internship, etc

好博医疗冲刺科创板:年营收2.6亿 万永钢和沈智群为实控人

Ruichengxin micro sprint technology innovation board: annual revenue of 367million, proposed to raise 1.3 billion, Datang Telecom is a shareholder

MySQL5免安装修改

SCM polling program framework based on linked list management

测试流程整理(3)
随机推荐
IP 实验室月复盘 · 第 5 期
File creation, writing, reading, deletion (transfer) in go language
Gorm 读写分离(转)
Lick the dog until the last one has nothing (state machine)
Programmer anxiety
R语言使用dplyr包的mutate函数对指定数据列进行标准化处理(使用mean函数和sd函数)并基于分组变量计算标准化后的目标变量的分组均值
Summary of recent days (non-technical article)
Introducing testfixture into unittest framework
CVPR 2022 | greatly reduce the manual annotation required for zero sample learning, and propose category semantic embedding rich in visual information (source code download)
Understand chisel language thoroughly 07. Chisel Foundation (IV) - bundle and VEC
吃透Chisel语言.12.Chisel项目构建、运行和测试(四)——Chisel测试之ChiselTest
markdown 语法之字体标红
软件测试之测试评估
R语言ggplot2可视化:gganimate包创建动画图(gif)、使用anim_save函数保存gif可视化动图
Ws2811 m is a special circuit for three channel LED drive and control, and the development of color light strip scheme
[FAQ] Huawei Account Service Error Report 907135701 Common reasons Summary and Solutions
吃透Chisel语言.04.Chisel基础(一)——信号类型和常量
BLOB,TEXT GEOMETRY or JSON column 'xxx' can't have a default value query 问题
忠诚协议是否具有法律效力
【FAQ】华为帐号服务报错 907135701的常见原因总结和解决方法