当前位置:   article > 正文

微信小程序展示长图与pdf_将微信小程序页面生成pdf

将微信小程序页面生成pdf

一、效果

二、代码部分

实现思路,就是使用常用控件view ,但是会遇到的问题是,长图大小超过屏幕大小时,就会出现图片被压缩的情况。最后,可以加上scroll-view来解决这个问题,实现代码如下:

xml部分

http://192.168.98.1:8080/web/xx.jpg说明,这个地址是清明上河图地址,本人测试的时候是存放在本地的tomcat目录下,通过启用tomcat应用来部署实现链接访问。

  1. <!-- 图片展示测试 -->
  2. <view wx:if="{{true}}">
  3. <scroll-view scroll-y="{{true}}" style="width:100%;height:{{sysheight}}px;">
  4. <view class="img-size">
  5. <image src="http://192.168.98.1:8080/web/xx.jpg" mode="widthFix" class="liucheng-img"></image>
  6. </view>
  7. </scroll-view>
  8. </view>

js部分

  1. //获取设备屏幕高度
  2. wx.getSystemInfo({
  3. success: (result) => {
  4. this.setData({
  5. sysheight:result.windowHeight
  6. })
  7. },
  8. });

css部分

  1. page{
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .img-size {
  6. width: 100%;
  7. margin: auto;
  8. }
  9. .liucheng-img {
  10. width: 100%;
  11. height: 100%;
  12. }

三、展示pdf

展示方式,第一可以直接使用webview

<web-view src="{{pathData}}" </web-view>

或者使用第三方库pdf.js

<web-view src="https://byfile.disscode.cn/pdfjs-2.8/web/viewer.html?file={{url}}"></web-view>

还可以使用微信小程序自带api先下载后打开

  1. wx.downloadFile({
  2. url: "http://192.168.43.101:8080/web/yu.pdf",//可以是后台传过来的路径
  3. success: function(res) {
  4. const filePath = res.tempFilePath
  5. console.log("下载文件成功=="+JSON.stringify(res.data))
  6. wx.openDocument({
  7. filePath: filePath,
  8. success: function(res) {
  9. //成功
  10. console.log("打开文件成功=="+JSON.stringify(res.data))
  11. },
  12. fail:function(res){
  13. console.log("打开文件失败=="+JSON.stringify(res.data))
  14. }
  15. })
  16. },
  17. fail:function(res){
  18. console.log("下载文件失败=="+JSON.stringify(res.data))
  19. }
  20. })

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/608987
推荐阅读
相关标签
  

闽ICP备14008679号