ng-pica
Version:
Angular module to resize images files in browser
13 lines (12 loc) • 323 B
TypeScript
export interface AspectRatioOptions {
keepAspectRatio: boolean;
forceMinDimensions?: boolean;
}
export interface NgxPicaResizeOptionsInterface {
aspectRatio?: AspectRatioOptions;
quality?: number;
alpha?: boolean;
unsharpAmount?: number;
unsharpRadius?: number;
unsharpThreshold?: number;
}