import { BasicCPCLArg } from "./basic"; import { CommandClause } from "@psdk/frame-father"; import { InputImage } from "@psdk/frame-imageb"; /** * Image */ export declare class CImage extends BasicCPCLArg { private x; private y; private readonly compress; private readonly image; private readonly reverse; private readonly threshold; constructor(options: { /** * Specify the x-coordinate, default is 0 */ x?: number; /** * Specify the y-coordinate, default is 0 */ y?: number; /** * enable compress image data, default is false */ compress?: boolean; /** * enable reverse image data, default is false */ reverse?: boolean; /** * threshold, default is 190 */ threshold?: number; /** * image canvas */ image: InputImage; }); clause(): CommandClause; header(): string; } //# sourceMappingURL=image.d.ts.map