pub fn rotate_about_center<P>(
image: &Image<P>,
theta: f32,
interpolation: Interpolation,
default: P,
) -> Image<P>
Expand description
Rotates an image clockwise about its center.
The output image has the same dimensions as the input. Output pixels
whose pre-image lies outside the input image are set to default
.