uploadFile.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import { api_uploadAttachment } from "@/http/http.js"
  2. /**
  3. * 压缩
  4. */
  5. const toBlob = (canvas, imgObj) => {
  6. return new Promise((resolve,reject) => {
  7. canvas.toBlob((fileSrc) => {
  8. resolve(fileSrc)
  9. }, `${imgObj.fileType}/${imgObj.extname}`, 0.3)
  10. })
  11. }
  12. /**
  13. * 图片加载完成
  14. */
  15. const newImage = (img) => {
  16. return new Promise((resolve,reject) => {
  17. img.onload = () => {
  18. resolve()
  19. }
  20. })
  21. }
  22. /**
  23. * 上传图片
  24. */
  25. export const uploadFile = async (imgObj, type, incidentId) => {
  26. console.log('44444', type)
  27. if(imgObj.extname=='mp4' || imgObj.extname=='avi' || imgObj.extname=='mpeg' ||
  28. imgObj.extname=='wmv' || imgObj.extname=='mov' || imgObj.extname=='3gp' ||
  29. imgObj.extname=='flv' || imgObj.extname=='mkv'){
  30. return uni.uploadFile({
  31. url: api_uploadAttachment(type, incidentId),
  32. filePath: imgObj.path,
  33. name: 'file',
  34. formData: {
  35. 'filename': imgObj.name
  36. }
  37. })
  38. }else{
  39. const res1 = await uni.getImageInfo({src: imgObj.url});
  40. const res = res1[1];
  41. console.log('压缩前', res)
  42. let canvasWidth = res.width //图片原始长宽
  43. let canvasHeight = res.height
  44. let img = new Image()
  45. img.src = res.path
  46. let canvas = document.createElement('canvas');
  47. let ctx = canvas.getContext('2d')
  48. canvas.width = canvasWidth
  49. canvas.height = canvasHeight
  50. await newImage(img)
  51. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
  52. const fileSrc = await toBlob(canvas, imgObj)
  53. let tp = window.URL.createObjectURL(fileSrc)
  54. console.log('压缩后', tp);
  55. return uni.uploadFile({
  56. url: api_uploadAttachment(type, incidentId),
  57. filePath: tp,
  58. name: 'file',
  59. formData: {
  60. 'filename': imgObj.name
  61. }
  62. });
  63. }
  64. }