241242243244245246247
public static Resample resampleTo(int dpi) { return new Resample(dpi); } public static Resize resizeTo(int width, int height) { return new Resize(width, height); }
240241242243244245246
234235236237238239240