All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blitline.image.functions.Rotate Maven / Gradle / Ivy

There is a newer version: 0.17.1
Show newest version
package com.blitline.image.functions;

/**
 * Rotates the image the specified angle clockwise. Negative angles rotate the image counter-clockwise.
 *
 * @author Christopher Smith
 *
 */
public class Rotate extends AbstractFunction {

	private static final long serialVersionUID = 1L;

	@Override
	public String getName() {
		return "rotate";
	}

	public Rotate(double degrees) {
		params.put("amount", degrees);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy