ImageJS
    Preparing search index...

    Interface TransformOptions

    interface TransformOptions {
        borderType?: BorderType;
        borderValue?: number;
        fullImage?: boolean;
        height?: number;
        interpolationType?: InterpolationType;
        inverse?: boolean;
        width?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    borderType?: BorderType

    Specify how the borders should be handled.

    'constant'

    borderValue?: number

    Value of the border if BorderType is 'constant'.

    0

    fullImage?: boolean

    Bypasses width and height options to include every pixel of the original image inside the transformed image.

    height?: number

    Height of the output image.

    interpolationType?: InterpolationType

    Method to use to interpolate the new pixels.

    'bilinear'

    inverse?: boolean

    Whether the transform matrix should be inverted.

    width?: number

    Width of the output image.