svoid copyBufferedImage(BufferedImage src, int srcx, int srcy, BufferedImage dest, int destx, int desty, int w, int h) { copyImagePart(src, srcx, srcy, dest, destx, desty, w, h); } svoid copyBufferedImage(BufferedImage src, BufferedImage dest, int destx, int desty) { if (src != null) copyBufferedImage(src, 0, 0, dest, destx, desty, src.getWidth(), src.getHeight()); } svoid copyBufferedImage(BufferedImage src, BufferedImage dest, Pt destP) { copyBufferedImage(src, dest, destP.x, destP.y); }
Began life as a copy of #1008798
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1008953 |
Snippet name: | copyBufferedImage - extended synonym of copyImagePart |
Eternal ID of this version: | #1008953/7 |
Text MD5: | 3a00eb90bba4e0f275eb2c326d66eacd |
Author: | stefan |
Category: | javax / imaging |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2022-08-23 16:41:29 |
Source code size: | 519 bytes / 12 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 595 / 647 |
Version history: | 6 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) |