Project1

标题: 如何做到图片缩放? [打印本页]

作者: saturnfjh    时间: 2016-4-12 20:08
标题: 如何做到图片缩放?
之前VA可以用stretch,JS应该怎么做呢?例如要把图标缩小成原来的0.5倍大小,难道只能另外制作一个图标文件吗?
作者: wbsy8241    时间: 2016-4-12 20:50
  1. /**
  2. * Performs a block transfer.
  3. *
  4. * @method blt
  5. * @param {Bitmap} source The bitmap to draw
  6. * @param {Number} sx The x coordinate in the source
  7. * @param {Number} sy The y coordinate in the source
  8. * @param {Number} sw The width of the source image
  9. * @param {Number} sh The height of the source image
  10. * @param {Number} dx The x coordinate in the destination
  11. * @param {Number} dy The y coordinate in the destination
  12. * @param {Number} [dw=sw] The width to draw the image in the destination
  13. * @param {Number} [dh=sh] The height to draw the image in the destination
  14. */
  15. Bitmap.prototype.blt = function(source, sx, sy, sw, sh, dx, dy, dw, dh) {
  16.     dw = dw || sw;
  17.     dh = dh || sh;
  18.     if (sx >= 0 && sy >= 0 && sw > 0 && sh > 0 && dw > 0 && dh > 0 &&
  19.             sx + sw <= source.width && sy + sh <= source.height) {
  20.         this._context.globalCompositeOperation = 'source-over';
  21.         this._context.drawImage(source._canvas, sx, sy, sw, sh, dx, dy, dw, dh);
  22.         this._setDirty();
  23.     }
  24. };
复制代码
rpg_core.js 能查到的方法啊
用blt 就可以了啊
作者: saturnfjh    时间: 2016-4-28 11:41
wbsy8241 发表于 2016-4-12 20:50
rpg_core.js 能查到的方法啊
用blt 就可以了啊

好吧,之前没注意看- -
谢谢~
作者: 西瓜最中间一勺    时间: 2018-11-14 19:44
wbsy8241 发表于 2016-4-12 20:50
rpg_core.js 能查到的方法啊
用blt 就可以了啊

大佬能否详解一下怎么用?新人感激不敬




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1