svoid addImageScaleOverlay(ImageSurface is, G2Drawable overlay) { if (overlay == null || is == null) ret; is.addOverlay(g -> { zoomGraphics(g, is.getZoomX(), is.getZoomY()); overlay.drawOn(g); }); }