png-compressor
    Preparing search index...

    Interface IPngMetadataPhysicalPixelDimensions

    A metadata entry that defines the intended pixel size or aspect ratio of the image.

    interface IPngMetadataPhysicalPixelDimensions {
        pixelsPerUnit: { x: number; y: number };
        type: "pHYs";
        unitType: "meter" | "unknown";
    }
    Index

    Properties

    pixelsPerUnit: { x: number; y: number }

    The number of pixels per unit for each dimension.

    type: "pHYs"

    The type of metadata, this is typically the name of the chunk from which is originates.

    unitType: "meter" | "unknown"

    The unit type of the dimensions.