static WidthAndHeight widthAndHeight(Image image) { ret image == null ?: widthAndHeight(image.getWidth(), image.getHeight()); } static WidthAndHeightImpl widthAndHeight(int w, int h) { ret new WidthAndHeightImpl(w, h); }