@effortlessmotion/pdf-to-md
    Preparing search index...

    Interface RenderPageResult

    One rendered page, from renderPageToPNG (or the pdf-to-md render CLI command it backs).

    interface RenderPageResult {
        height: number;
        png: Buffer;
        rotation: number;
        width: number;
    }
    Index
    height: number

    pixel height at the requested dpi

    png: Buffer

    the rendered page, PNG-encoded

    rotation: number

    the page's own /Rotate entry, baked into png/width/height already — informational, not something a caller needs to apply again

    width: number

    pixel width at the requested dpi