作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 div,我需要制作这个 div 的图像并发送到服务器。有什么方法可以使用 Angular 7 来实现吗?我试图搜索图书馆但没有结果。所有解决方法都使用原生 JS。
最佳答案
要将 HTML 内容保存到图像中,您需要使用 HTML2CANVAS
库
创建一些引用 child
@ViewChild('screen') 屏幕:ElementRef;
@ViewChild('canvas') Canvas :ElementRef;
@ViewChild('downloadLink') 下载链接:ElementRef;
当然,你需要像这样添加HTML引用
<table #screen id="table" class="table table-striped">...
<div id="download">
<img #canvas>
<a #downloadLink></a>
</div>
然后创建一个函数来制作图像
downloadImage(){
html2canvas(this.screen.nativeElement).then(canvas => {
this.canvas.nativeElement.src = canvas.toDataURL();
this.downloadLink.nativeElement.href = canvas.toDataURL('image/png');
this.downloadLink.nativeElement.download = 'marble-diagram.png';
this.downloadLink.nativeElement.click();
});
}
关于angular - 如何将div转换成图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56830595/
我是一名优秀的程序员,十分优秀!