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

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

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

public class Resize extends AbstractFunction {
	@Override
	public String getName() {
		return "resize";
	}
	
	public Resize(int width, int height) {
		params.put("width", width);
		params.put("height", height);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy