當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript dwt.WebTwainEnv類代碼示例

本文整理匯總了TypeScript中dwt.WebTwainEnv的典型用法代碼示例。如果您正苦於以下問題:TypeScript WebTwainEnv類的具體用法?TypeScript WebTwainEnv怎麽用?TypeScript WebTwainEnv使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了WebTwainEnv類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: updateLargeViewer

function updateLargeViewer() {
  const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
  const DWObjectLargeViewer = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainerLargeViewer');
  if (DWObject) {
    DWObject.CopyToClipboard(DWObject.CurrentImageIndexInBuffer); // Copy the current image in the thumbnail to clipboard in DIB format.
    DWObjectLargeViewer.LoadDibFromClipboard(); // Load the image from Clipboard into the large viewer.
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:8,代碼來源:dwt-tests.ts

示例2: downloadImage

function downloadImage() {
  const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
  if (DWObject) {
    DWObject.HTTPPort = 80;                
    DWObject.HTTPDownload("www.dynamsoft.com", "img.png", () => {}, (errorCode: number, errorString: string) => {});
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:7,代碼來源:dwt-tests.ts

示例3: uploadImage

function uploadImage() {
  const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
  if (DWObject) {
    DWObject.HTTPPort = 80;  
    DWObject.IfSSL = false;
    DWObject.HTTPUploadThroughPost("www.dynamsoft.com", DWObject.CurrentImageIndexInBuffer, "upload", "tmp.jpg", () => {}, (errorCode: number, errorString: string) => {});
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:8,代碼來源:dwt-tests.ts

示例4: saveImage

function saveImage() {
  const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
  if (DWObject) {
    DWObject.ConvertToGrayScale(DWObject.CurrentImageIndexInBuffer);
    DWObject.SaveAsJPEG("DynamicWebTWAIN.jpg", DWObject.CurrentImageIndexInBuffer);
    DWObject.SaveAllAsMultiPageTIFF("DynamicWebTWAIN.tiff", () => {}, (errorCode: number, errorString: string) => {});
    DWObject.SaveAllAsPDF("DynamicWebTWAIN.pdf", () => {}, (errorCode: number, errorString: string) => {});
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:9,代碼來源:dwt-tests.ts

示例5: acquireImage

function acquireImage() {
  const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
  if (DWObject) {
    DWObject.SelectSourceByIndex(0); // Use method SelectSourceByIndex to avoid the 'Select Source' dialog
    DWObject.OpenSource();
    DWObject.IfDisableSourceAfterAcquire = true; // Scanner source will be disabled/closed automatically after the scan.
    DWObject.AcquireImage({}, () => {}, (errorCode: number, errorString: string) => {DWObject.CloseSource(); });
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:9,代碼來源:dwt-tests.ts

示例6: loadPDF

function loadPDF() {
    const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
    if (DWObject) {
		DWObject.Addon.PDF.SetResolution(200);
		DWObject.Addon.PDF.SetConvertMode(1);
        DWObject.IfShowFileDialog = true;
        DWObject.LoadImageEx(" ", 5);
    }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:9,代碼來源:dwt-tests.ts

示例7: dwtOnReady

function dwtOnReady() {
    const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');    // Get the Dynamic Web TWAIN object that is embeded in the div with id 'dwtcontrolContainer'
    if (DWObject) {
      let count = DWObject.SourceCount;
      if (count === 0) {
        DWObject.CloseSourceManager();
        DWObject.ImageCaptureDriverType = 0;
        DWObject.OpenSourceManager();
        count = DWObject.SourceCount;
      }
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:12,代碼來源:dwt-tests.ts

示例8: editImage

function editImage() {
  const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
  if (DWObject) {
    if (DWObject.HowManyImagesInBuffer > 0)
        DWObject.RotateLeft(DWObject.CurrentImageIndexInBuffer);

    if (DWObject.HowManyImagesInBuffer > 0)
        DWObject.RotateRight(DWObject.CurrentImageIndexInBuffer);

    if (DWObject.HowManyImagesInBuffer > 0)
        DWObject.Mirror(DWObject.CurrentImageIndexInBuffer);
    
    if (DWObject.HowManyImagesInBuffer > 0)
        DWObject.Flip(DWObject.CurrentImageIndexInBuffer);
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:16,代碼來源:dwt-tests.ts

示例9: registerEvent

function registerEvent() {
  const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
  if (DWObject) {
    // The event OnPostTransfer fires after each image is scanned and transferred
    DWObject.RegisterEvent("OnPostTransfer", function () {});

    // The event OnPostLoad fires after the images from a local directory have been loaded into the control
    DWObject.RegisterEvent("OnPostLoad", function () {});

    // The event OnMouseClick fires when the mouse clicks on an image on Dynamic Web TWAIN viewer
    DWObject.RegisterEvent("OnMouseClick", function () {});

    // The event OnTopImageInTheViewChanged fires when the top image currently displayed in the viewer changes
    DWObject.RegisterEvent("OnTopImageInTheViewChanged", function (index: number) {
        DWObject.CurrentImageIndexInBuffer = index;
    });
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:18,代碼來源:dwt-tests.ts

示例10: showImageEditor

function showImageEditor() {
  const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
  if (DWObject) {
    DWObject.ShowImageEditor();
  }
}
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:6,代碼來源:dwt-tests.ts


注:本文中的dwt.WebTwainEnv類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。