static BufferedImage mergeRGBImagesAndRects_scaledToWidth(L<RGBImageAndRect> l, int width) { new L<BufferedImage> images; for (RGBImageAndRect i : l) { BufferedImage img2 = toBufferedImage(i.image); BufferedImage img3 = scaleImage_noSmooth(img2, doubleRatio(width, i.image.getWidth())); if (i.rect != null) { Rect face3 = rescaleRect_imageToImage(i.rect, img2, img3); drawRect(img3, face3, Color.white); } images.add(img3); } ret mergeBufferedImagesVertically(images); }
download show line numbers debug dex old transpilations
Travelled to 12 computer(s): bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1019196 |
Snippet name: | mergeRGBImagesAndRects_scaledToWidth |
Eternal ID of this version: | #1019196/3 |
Text MD5: | 08616fc2478565fcdd35bfea81af74fa |
Author: | stefan |
Category: | javax / imaging |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2018-10-27 14:51:05 |
Source code size: | 522 bytes / 13 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 356 / 378 |
Version history: | 2 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1019533 - mergeRGBImagesAndRects |