exportAndDownloadFile(Vintasoft.Imaging.WebExportFileSettingsJS,function) Метод
В этом разделе
Exports images (with annotations), which are loaded in web image viewer, to a file and downloads the file.
Синтаксис
var instance = new Vintasoft.Imaging.UI.WebDocumentViewerBaseJS(settings);
var value; // Type: any
// Parameters
var exportFileSettings; // Type: WebExportFileSettingsJS
var successFunc; // Type: function
value = instance.exportAndDownloadFile(exportFileSettings, successFunc);
function exportAndDownloadFile(
: WebExportFileSettingsJS,
: Function
) : any;
Parameters
- exportFileSettings
- Экземпляр класса WebExportFileSettingsJS, который определяет настройки файла экспорта.
- successFunc
- Функция, которая будет выполнена, если запрос выполнен успешно.
Вот прототип функции "function __success(data)".
Параметр 'data' имеет следующие свойства:
- fileId (string): Идентификатор файла.
Исключения
Исключение | Описание |
| Выбрасывается, если аргумент имеет неправильный тип. |
Пример
ThisJavaScriptcodeshowshowtoexportimageswithannotationstoafileanddownloadthefile:
// create the export file settings
var exportFileSettings = new Vintasoft.Imaging.WebExportFileSettingsJS();
// specify the indexes of images, which must be saved
exportFileSettings.set_ImageIndexes([ 0, 2, 0, 1 ]);
// specify the name of the file, where images must be saved
exportFileSettings.set_FileId("document.pdf");
// specify that annotations must be saved with images
exportFileSettings.set_SaveAnnotations(true);
// export images to a file and download the file
docViewer1.exportAndDownloadFile(
exportFileSettings,
function(data) {
console.log("File changes are saved successfully.");
}
);
Совместимость с веб браузерами
Смотрите также