124125126127128129130
public static ContrastStretchChannel stretchContrast(int blackPoint, int whitePoint) { return new ContrastStretchChannel(blackPoint).whitePoint(whitePoint); } public static Crop cropToWidth(int width) { return new Crop(width); }
128129130131132133134
public static Crop cropToWidth(int width) { return new Crop(width); } public static Crop cropToSize(int width, int height) { return new Crop(width).height(height); }
123124125126127128129
127128129130131132133
117118119120121122123
121122123124125126127