个人案例
- 考拉水印
免费视频去水印,图片去水印,短视频无水印视频、图册提取
轻抖图片去水印扫码体验
我的小程序也是,只能通过全称搜到,关键字都搜不到,差一个字都不行。 小程序:视频图片去水印神器
小程序只能通过全称搜到了,关键字搜不到?我的小程序appid是wx7d29836e8c9adcd7,最近无法通过关键字搜索到了,只能通过全名搜索,有没有人知道咋回事
01-12[图片]
不能含有虚假的、冒充、利用他人名义的、容易构成混淆、误认的、法律、法规和政策禁止的内容?修改简介时一直提示标题的内容,是小程序bug吗? 简介内容:日报、周报、月报、年终总结、小红书文案、知乎回答
01-05离屏画布的方法好像还不是很好用,还是用wx.createSelectorQuery()解决了,只需要把画布组件置于屏幕外就行了 <canvas type="2d" id="canvas" style="width:400px; height:400px;position:fixed;left:100%;" ></canvas>
wx.canvasToTempFilePath报错,提示image格式错误?基础库版本:2.16.1 报错内容: VM1309 WAService.js:2 TypeError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSImageValue or HTMLImageElement or SVGImageElement or HTMLVideoElement or HTMLCanvasElement or ImageBitmap or OffscreenCanvas)' 代码段: // 创建离屏 2D canvas 实例 const canvas = wx.createOffscreenCanvas({type: '2d', width: 300, height: 150}) // 获取 context。注意这里必须要与创建时的 type 一致 const context = canvas.getContext('2d') // 创建一个图片 const image = canvas.createImage() // 等待图片加载 await new Promise(resolve => { image.onload = resolve image.src = 'http://1812.img.pp.sohu.com.cn/images/blog/2009/11/18/18/8/125b6560a6ag214.jpg' // 要加载的图片 url }) // 把图片画到离屏 canvas 上 context.clearRect(0, 0, 300, 150) context.drawImage(image, 0, 0, 300, 150) wx.canvasToTempFilePath({ canvas: canvas, quality: 1, success: (res) => { let filePath = res.tempFilePath; //获取图片地址 console.log("filePath:",filePath) } }, this)
2021-05-28