asposepdfcloud
Version:
Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to diff
25 lines (24 loc) • 636 B
TypeScript
import { MarginInfo } from "./marginInfo";
import { ImageSrcType } from "./imageSrcType";
export declare class ImageTemplate {
'imagePath': string;
'imageSrcType': ImageSrcType;
'leftMargin': number;
'rightMargin': number;
'topMargin': number;
'bottomMargin': number;
'pageWidth': number;
'pageHeight': number;
'marginInfo': MarginInfo;
static discriminator: any;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}