@e-mc/image
v0.10.3
Published
Image constructor for E-mc.
Downloads
1,208
Readme
@e-mc/image
- NodeJS 16
- ES2020
General Usage
Interface
import type { IHost, ModuleConstructor } from "./index";
import type { IFileThread } from "./asset";
import type { CommandData, CropData, QualityData, ResizeData, RotateData, TransformOptions } from "./image";
import type { ImageModule } from "./settings";
interface IImage extends IClient<IHost, ImageModule> {
resizeData?: ResizeData;
cropData?: CropData;
rotateData?: RotateData;
qualityData?: QualityData;
methodData?: [string, unknown[]?][];
opacityValue?: number;
setCommand(value: string | CommandData, outputAs?: string): void;
getCommand(): string;
parseCommand(value: string): CommandData;
parseMethod(value: string): [string, unknown[]?][] | undefined;
parseResize(value: string): ResizeData | undefined;
parseCrop(value: string): CropData | undefined;
parseRotate(value: string): RotateData | undefined;
parseQuality(value: string): QualityData | undefined;
parseOpacity(value: string): number;
using?(data: IFileThread, command: string): Promise<unknown>;
get outputAs(): string;
}
interface ImageConstructor extends ModuleConstructor {
readonly REGEXP_SIZERANGE: RegExp;
transform(file: string, command: string, options: { tempFile: true }): Promise<string>;
transform(file: string, command: string, options?: TransformOptions): Promise<Buffer | null>;
clamp(value: unknown, min?: number, max?: number): number;
isBinary(mime: unknown): mime is string;
toABGR(buffer: Uint8Array | Buffer): Buffer;
readonly prototype: IImage;
new(module?: ImageModule, ...args: unknown[]): IImage;
}
Settings
import type { PermittedDirectories } from "./core";
interface ImageModule {
// handler: "@pi-r/jimp";
webp?: string;
settings?: {
broadcast_id?: string | string[];
cache?: boolean;
jimp?: {
exec?: {
uid?: number;
gid?: number;
};
cache_expires?: number | string;
rotate_clockwise?: boolean;
};
webp?: {
path?: string;
cwebp?: string[];
gif2webp?: string[];
};
};
permission?: PermittedDirectories;
}
Example usage
NOTE: Usage without a Host is conducted through static methods. The using class method is called by the Host to perform the transformation.
References
- https://www.unpkg.com/@e-mc/[email protected]/lib/asset.d.ts
- https://www.unpkg.com/@e-mc/[email protected]/lib/image.d.ts
- https://www.unpkg.com/@e-mc/[email protected]/lib/settings.d.ts
LICENSE
BSD 3-Clause