useUploadFile.js 1.4 KB

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