resize method

ImageProcessorAdapter resize(
  1. int width,
  2. int height
)

Implementation

ImageProcessorAdapter resize(int width, int height) {
  resizeWidth = width;
  resizeHeight = height;
  return this;
}