SongGuess
    Preparing search index...

    Type Alias MediaTransformationInputOptions

    Configuration options for transforming media input. Controls how the media should be resized and fitted.

    type MediaTransformationInputOptions = {
        fit?: "contain" | "cover" | "scale-down";
        height?: number;
        width?: number;
    }
    Index

    Properties

    Properties

    fit?: "contain" | "cover" | "scale-down"

    How the media should be resized to fit the specified dimensions

    height?: number

    Target height in pixels

    width?: number

    Target width in pixels