crop-image
    Preparing search index...

    Configuration for the crop constraint engine.

    interface CropConfig {
        aspectRatio: AspectRatio | null;
        aspectRatios: AspectRatio[] | null;
        edgeSnapThreshold: number;
        evenPadding: boolean;
        maxSize: { height: number; width: number } | null;
        minSize: { height: number; width: number } | null;
        mode: "crop" | "crop-pad";
        sourceHeight: number;
        sourceWidth: number;
    }
    Index

    Properties

    aspectRatio: AspectRatio | null
    aspectRatios: AspectRatio[] | null
    edgeSnapThreshold: number
    evenPadding: boolean
    maxSize: { height: number; width: number } | null
    minSize: { height: number; width: number } | null
    mode: "crop" | "crop-pad"
    sourceHeight: number
    sourceWidth: number