rotate90 method

Image rotate90()

Implementation

Image rotate90() {
  final out = ImagingNewDirty(_mode, height, width);
  ImagingRotate90(out, _inst);
  return Image._(out);
}