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

com.artech.base.services.IAndroidImageUtil Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.7.0
Show newest version
package com.artech.base.services;

public interface IAndroidImageUtil
{
	//properties
	public  long getFileSize(String imageFile);
	public  int getImageHeight(String imageFile);
	public  int getImageWidth(String imageFile);

	//methods
	public  String crop(String imageFile, int x, int y, int width, int height);
	public  String flipHorizontally(String imageFile);
	public  String flipVertically(String imageFile);
	public  String resize(String imageFile, int width, int height, boolean keepAspectRatio);
	public  String scale(String imageFile, short percent);
	public  String rotate(String imageFile, short angle);


	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy