Browse Source

[完善]checkbox勾选图片保存问题

beijing
邵佳豪 2 years ago
parent
commit
1b88523b4e
  1. 5
      src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts

5
src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts

@ -328,6 +328,11 @@ export class GetOutOfLineDetailsComponent implements OnInit {
);
}
this.ctx.clearRect(0, 0, this.canvasWidth, this.canvasHeight);
let imgBg: any = document.getElementById("img");
const img = new Image();
img.src = imgBg.src;
const canvas: any = document.querySelector("#canvas");
this.ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
this.strokeRect(this.currentCoordinate);
}

Loading…
Cancel
Save