В этом разделе
Устанавливает разрешение изображения SANE устройства.
Синтаксис
var instance = new Vintasoft.Twain.WebTwainDeviceJS(deviceName, productFamily, manufacturer, driverVersion, twainVersion, deviceManager, is64Bit);
var returnValue; // Type: any
// Parameters
var value; // Type: number
returnValue = instance.set_SaneResolution(value);
function set_SaneResolution(
: number
) : any;
Parameters
- value
- Разрешение.
Исключения
Исключение | Описание |
| Выбрасывается, если устройство не открыто ИЛИ возникает ошибка при настройке значения возможностей устройства. |
Пример
// Sets scan resolution of opened SANE device.
function setSaneScanResolution(saneDevice) {
try {
console.log("SANE device: " + saneDevice.get_DeviceName());
// if SANE device is not opened
if (!saneDevice.get_IsOpened()) {
console.log("Device is not opened. Please open device.");
return;
}
// set 300 dpi resolution for SANE device
saneDevice.set_SaneResolution(300);
console.log("Scan resolution: " + saneDevice.get_SaneResolution());
}
catch (ex) {
alert(ex);
}
}
Совместимость с веб браузерами
Смотрите также