成品展示: https://kartwutian.github.io/canvas-demos/canvas-demo44.html
2017-01-11
@Caihong_deng图片缩小水印可能会出现不在图片上的情况,怎么解决
context.drawImage(watermark, cw/2-watermarkCw/2, ch/2-watermarkCh/2);
我想到了一个直接让水印显示在画布的最中间,这样放大和缩小都能看见
context.drawImage(watermark, cw/2-watermarkCw/2, ch/2-watermarkCh/2);
我想到了一个直接让水印显示在画布的最中间,这样放大和缩小都能看见
2016-12-14
@TAMJING 对于这个问题是因为chrome浏览器的图片加载是异步的,所以小图片先加载出来,而大图片后加载出来,所以无论先绘制大的后绘制小的。都是大图片在上面的。
2016-12-14
Math.pow(Math.cos(Math.atan2(j - 400, i - 400) / 2), 2) * 255
Math.pow(Math.cos(Math.atan2(j - 400, i - 400) / 2 - 2 * Math.acos(-1) / 3), 2) * 255
Math.pow(Math.cos(Math.atan2(j - 400, i - 400) / 2 + 2 * Math.acos(-1) / 3), 2) * 255
Math.pow(Math.cos(Math.atan2(j - 400, i - 400) / 2 - 2 * Math.acos(-1) / 3), 2) * 255
Math.pow(Math.cos(Math.atan2(j - 400, i - 400) / 2 + 2 * Math.acos(-1) / 3), 2) * 255
2016-12-07