Interface StaticDocParam

interface StaticDocParam {
    height: number;
    offset: number;
    pageCount: number;
    template: string;
    width: number;
}

Properties

height: number

图片高度

offset: number

index偏移量

pageCount: number

文档页数

template: string

图片url的模板。 格式为: "https://??/?{index}.jpg", "https://??/?{index}.png" 如果offset为1,则第5页的图片为: "https://??/?6.jpg", 或者"https://??/?6.png"

width: number

图片宽度