rotateCounterClockwise45 method

  1. @override
LuminanceSource rotateCounterClockwise45()
override

Returns a new object with rotated image data by 45 degrees counterclockwise. Only callable if {@link #isRotateSupported()} is true.

@return A rotated version of this object.

Implementation

@override
LuminanceSource rotateCounterClockwise45() {
  return InvertedLuminanceSource(_delegate.rotateCounterClockwise45());
}