html2canvas+jspdf文字整体样式向下偏移

1 篇文章 0 订阅

html2canvas+jspdf文字整体样式向下偏移

csdn搜不出解决方案,每个人需要导出的页面不一样。

像什么改版本号啊为1.0.0啊根本没用,2024以后都不用试了,除非组件有更新。
我的版本是

    "html2canvas": "^1.4.1",
    "jspdf": "^2.5.1",

去原库的issue里找到了大佬的解决方法。

初步判断是tailwind的问题:生成的截图文字整体向下偏移 设置scroll-Y: 0 无效 #2363

底下评论有人建议的解决方法原链接:Since html2canvas append div tag to body to get some metrics, we can do the following:

const install = () => {
  
  const style = document.createElement('style')
  document.head.appendChild(style)
  style.sheet?.insertRule(
    'body > div:last-child img { display: inline-block; }',
  )
  html2Canvas(document.querySelector('#pdfPage') as HTMLDivElement, {
    allowTaint: true,
    useCORS: true,
    scale: 4, // 按比例增加分辨率
  }).then((canvas: any) => {
    style.remove()
    
  })
}

解决。

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值