Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
5fd63f26
提交
5fd63f26
authored
12月 02, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加图片压缩功能
上级
a71787f7
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
129 行增加
和
68 行删除
+129
-68
ImgUploadCom.jsx
one_stop_public/libs/ImgUploadCom.jsx
+70
-61
handlePhoto.js
zyd_public/utils/handlePhoto.js
+59
-7
没有找到文件。
one_stop_public/libs/ImgUploadCom.jsx
浏览文件 @
5fd63f26
import
React
from
'react'
;
import
{
Upload
,
message
}
from
'antd'
;
import
{
Upload
,
message
}
from
'antd'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
{
zipImage
}
from
"@/webPublic/zyd_public/utils/handlePhoto"
;
export
default
class
ImgUploadCom
extends
React
.
Component
{
constructor
(
props
)
{
super
(
props
);
const
value
=
props
.
value
;
this
.
state
=
{
url
:
value
,
};
}
constructor
(
props
)
{
super
(
props
);
const
value
=
props
.
value
;
this
.
state
=
{
url
:
value
,
};
}
triggerChange
=
changedValue
=>
{
// Should provide an event to pass value to Form.
const
onChange
=
this
.
props
.
onChange
;
if
(
onChange
)
{
onChange
(
changedValue
);
}
};
componentWillReceiveProps
(
nextProps
)
{
// Should be a controlled component.
if
(
'value'
in
nextProps
)
{
const
value
=
nextProps
.
value
;
this
.
setState
({
url
:
value
});
}
}
changeUrl
=
(
info
,
key
)
=>
{
if
(
info
.
file
.
status
===
'done'
)
{
message
.
success
(
`图片上传成功`
);
triggerChange
=
(
changedValue
)
=>
{
// Should provide an event to pass value to Form.
const
onChange
=
this
.
props
.
onChange
;
if
(
onChange
)
{
onChange
(
changedValue
);
}
};
componentWillReceiveProps
(
nextProps
)
{
// Should be a controlled component.
if
(
'value'
in
nextProps
)
{
const
value
=
nextProps
.
value
;
this
.
setState
({
url
:
value
});
}
}
changeUrl
=
(
info
,
key
)
=>
{
if
(
info
.
file
.
status
===
'done'
)
{
message
.
success
(
`图片上传成功`
);
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
url
:
info
.
file
.
response
});
}
this
.
triggerChange
(
info
.
file
.
response
);
}
else
if
(
info
.
file
.
status
===
'error'
)
{
message
.
error
(
`图片上传失败`
);
}
};
changePos
=
obj
=>
{
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({...
obj
});
}
this
.
triggerChange
({...
obj
});
};
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
url
:
info
.
file
.
response
});
}
this
.
triggerChange
(
info
.
file
.
response
);
}
else
if
(
info
.
file
.
status
===
'error'
)
{
message
.
error
(
`图片上传失败`
);
}
};
changePos
=
(
obj
)
=>
{
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
...
obj
});
}
this
.
triggerChange
({
...
obj
});
};
render
()
{
const
{
json
,
disabled
}
=
this
.
props
;
const
{
url
}
=
this
.
state
;
return
(
<
Upload
.
Dragger
disabled=
{
disabled
}
accept=
{
'image/*'
}
url=
{
url
}
showUploadList=
{
false
}
name=
"file"
action=
{
config
.
uploadUrl
}
onChange=
{
this
.
changeUrl
}
multiple=
{
false
}
style=
{
{
padding
:
0
}
}
>
{
url
?
(
<
img
src=
{
config
.
httpServer
+
url
}
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
}
}
/>
)
:
(
<
div
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
}
}
/>
)
}
</
Upload
.
Dragger
>
);
}
render
()
{
const
{
json
,
disabled
}
=
this
.
props
;
const
{
url
}
=
this
.
state
;
return
(
<
Upload
.
Dragger
disabled=
{
disabled
}
accept=
{
'image/*'
}
url=
{
url
}
beforeUpload=
{
(
file
)
=>
{
return
zipImage
(
file
,
4
);
// 图片压缩函数. 超过fileSizeLimitMb兆的图片 直接压缩成原来的 30% 如果后续有其他需求考虑 做成全局配置项 配置可以压缩的图片的范围
}
}
showUploadList=
{
false
}
name=
"file"
action=
{
config
.
uploadUrl
}
onChange=
{
this
.
changeUrl
}
multiple=
{
false
}
style=
{
{
padding
:
0
}
}
>
{
url
?
(
<
img
src=
{
config
.
httpServer
+
url
}
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
}
}
/>
)
:
(
<
div
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
}
}
/>
)
}
</
Upload
.
Dragger
>
);
}
}
zyd_public/utils/handlePhoto.js
浏览文件 @
5fd63f26
import
React
,
{
useState
}
from
'react'
;
import
{
isJSON
}
from
'@/webPublic/one_stop_public/copy'
;
/***
* 处理铜川学生头像颠倒的bug
* */
...
...
@@ -14,7 +13,7 @@ export default function HandlePhoto({ urlObj, style, ...props }) {
}
const
[
needTransForm
,
setTransform
]
=
useState
(
false
);
if
(
url
)
{
getIsNeedTransform
(
url
).
then
(
(
res
)
=>
{
getIsNeedTransform
(
url
).
then
(
res
=>
{
if
(
res
)
{
setTransform
(
true
);
}
...
...
@@ -75,11 +74,7 @@ export function getIsNeedTransform(url) {
* */
export
function
getFileInfo
(
fileJsonStr
)
{
if
(
!
fileJsonStr
||
!
isJSON
(
fileJsonStr
))
{
if
(
fileJsonStr
&&
fileJsonStr
.
indexOf
(
'http'
)
<=
-
1
&&
fileJsonStr
.
length
>
10
)
{
if
(
fileJsonStr
&&
fileJsonStr
.
indexOf
(
'http'
)
<=
-
1
&&
fileJsonStr
.
length
>
10
)
{
// 拼一站式的 图片路径 可能需要修改
const
prefix
=
window
.
specialImportantSystemConfig
&&
window
.
specialImportantSystemConfig
.
dfs
;
return
{
...
...
@@ -123,3 +118,60 @@ export function getFileInfo(fileJsonStr) {
}
}
}
/**
* 图片压缩函数
* 返回一个promise resolve 新的文件
* */
export
const
zipImage
=
(
file
,
fileSizeLimitMb
=
3
)
=>
{
let
fileSizeMb
=
file
.
size
/
1024
/
1024
;
console
.
log
(
fileSizeMb
);
let
fileName
=
file
.
name
;
if
(
fileSizeMb
<
fileSizeLimitMb
)
{
// 1MB 以下的图片不需要压缩。
return
new
Promise
((
resolve
,
reject
)
=>
{
resolve
(
file
)
});
}
let
reader
=
new
FileReader
();
reader
.
readAsDataURL
(
file
);
return
new
Promise
((
resolve
,
reject
)
=>
{
reader
.
onload
=
e
=>
{
//这里的e.target.result就是转换后base64格式的图片文件
let
image
=
new
Image
();
//新建一个img标签(还没嵌入DOM节点)
image
.
src
=
e
.
target
.
result
;
return
(
image
.
onload
=
()
=>
{
let
canvas
=
document
.
createElement
(
'canvas'
);
debugger
;
let
context
=
canvas
.
getContext
(
'2d'
);
let
imageWidth
=
image
.
width
*
0.3
;
//压缩后图片的大小
let
imageHeight
=
image
.
height
*
0.3
;
let
data
=
''
;
canvas
.
width
=
imageWidth
;
canvas
.
height
=
imageHeight
;
context
.
drawImage
(
image
,
0
,
0
,
imageWidth
,
imageHeight
);
data
=
canvas
.
toDataURL
(
'image/jpeg'
);
let
zipFile
=
dataURLtoFile
(
data
,
fileName
);
console
.
log
(
zipFile
);
resolve
(
zipFile
);
//压缩完成
});
};
});
};
const
dataURLtoFile
=
(
dataurl
,
filename
)
=>
{
// 将base64转换为文件
let
arr
=
dataurl
.
split
(
','
);
let
mime
=
arr
[
0
].
match
(
/:
(
.*
?)
;/
)[
1
];
let
bstr
=
atob
(
arr
[
1
]);
let
n
=
bstr
.
length
;
let
u8arr
=
new
Uint8Array
(
n
);
while
(
n
--
)
{
u8arr
[
n
]
=
bstr
.
charCodeAt
(
n
);
}
return
new
File
([
u8arr
],
filename
,
{
type
:
mime
});
};
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论