mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-05 17:50:03 +00:00
remove old v12 types
This commit is contained in:
@@ -1,101 +0,0 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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(); });
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
function showImageEditor() {
|
||||
const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
|
||||
if (DWObject) {
|
||||
DWObject.ShowImageEditor();
|
||||
}
|
||||
}
|
||||
|
||||
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) => {});
|
||||
}
|
||||
}
|
||||
|
||||
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.
|
||||
}
|
||||
}
|
||||
|
||||
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) => {});
|
||||
}
|
||||
}
|
||||
|
||||
function downloadImage() {
|
||||
const DWObject = Dynamsoft.WebTwainEnv.GetWebTwain('dwtcontrolContainer');
|
||||
if (DWObject) {
|
||||
DWObject.HTTPPort = 80;
|
||||
DWObject.HTTPDownload("www.dynamsoft.com", "img.png", () => {}, (errorCode: number, errorString: string) => {});
|
||||
}
|
||||
}
|
||||
3459
types/dwt/v12/index.d.ts
vendored
3459
types/dwt/v12/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,28 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": false,
|
||||
"strictFunctionTypes": true,
|
||||
"baseUrl": "../../",
|
||||
"typeRoots": [
|
||||
"../../"
|
||||
],
|
||||
"paths": {
|
||||
"dwt": [
|
||||
"dwt/v12"
|
||||
]
|
||||
},
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"dwt-tests.ts"
|
||||
]
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"extends": "dtslint/dt.json",
|
||||
"rules": {
|
||||
"jsdoc-format": false,
|
||||
"max-line-length": [false],
|
||||
"no-redundant-jsdoc": false,
|
||||
"no-redundant-jsdoc-2": false,
|
||||
"no-trailing-whitespace": false,
|
||||
"space-before-function-paren": false,
|
||||
"only-arrow-functions": [false]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user