resize method

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

Implementation

ImageProcessor resize(int width, int height) {
  adapter.resize(width, height);
  return this;
}