stimulsoft-forms
Version:
Stimulsoft PDF Forms
16 lines (15 loc) • 607 B
TypeScript
import StiJson from "../../system/StiJson";
import { StiVerticalAlignment, StiHorizontalAlignment } from "../../system/enums";
import { StiImageEditorResultObject } from "../../system/interfaces";
export declare class StiImageEditorResult implements StiImageEditorResultObject {
loadedImage: any;
verticalAlignment: StiVerticalAlignment;
horizontalAlignment: StiHorizontalAlignment;
aspectRatio: boolean;
stretch: boolean;
naturalWidth: number;
naturalHeight: number;
constructor();
saveToJsonObject(options: any): StiJson;
loadFromJsonObject(json: StiJson): void;
}