I am using Dynamic Web TWAIN in React js. After the user scans the document the local save file works fine but I don't know what kind of document data to send to the server from Dynamic Web TWAIN.
I have tried this,
This is my save button logic.
const saveOrUploadImage = (_type) => {
if (_type !== "local" && _type !== "server") return;
let fileName = saveFileName + "." + saveFileFormat;
let imagesToUpload = [];
let fileType = 0;
let onSuccess = () => {
setSaveFileName((new Date()).getTime().toString());
imagesToUpload.push(props.buffer.current);
_type === "local" ? props.handleOutPutMessage(fileName + " saved successfully!", "important") : props.handleOutPutMessage(fileName + " uploaded successfully!", "important");
};
let onFailure = (errorCode, errorString, httpResponse) => {
(httpResponse && httpResponse !== "") ? props.handleOutPutMessage(httpResponse, "httpResponse") : props.handleException({ code: errorCode, message: errorString });
};
if (bMulti) {
if (props.selected.length === 1 || props.selected.length === props.buffer.count) {
if (_type === "local") {
switch (saveFileFormat) {
default: break;
case "tif": DWObject.SaveAllAsMultiPageTIFF(fileName, onSuccess, onFailure); break;
case "pdf": DWObject.SaveAllAsPDF(fileName, onSuccess, onFailure); break;
}
}
else {
for (let i = 0; i < props.buffer.count; i++)
imagesToUpload.push(i);
}
} else {
if (_type === "local") {
switch (saveFileFormat) {
default: break;
case "tif": DWObject.SaveSelectedImagesAsMultiPageTIFF(fileName, onSuccess, onFailure); break;
case "pdf": {
DWObject.SaveAsPDF(fileName, props.buffer.current, onSuccess, onFailure)
console.log('GetImageURL', Dynamsoft.DWT.GetImageURL(props.buffer.current));
console.log("DWObject.SaveAllAsPDF()---", DWObject.SaveAllAsPDF(fileName, props.buffer.current, onSuccess, onFailure));
console.log("DWObject---", DWObject);
DWObject.SaveSelectedImagesAsMultiPagePDF(fileName, onSuccess, onFailure)
}; break;
}
}
else {
imagesToUpload = props.selected;
}
}
} else {
if (_type === "local") {
switch (saveFileFormat) {
default: break;
case "bmp": DWObject.SaveAsBMP(fileName, props.buffer.current, onSuccess, onFailure); break;
case "jpg": DWObject.SaveAsJPEG(fileName, props.buffer.current, onSuccess, onFailure); break;
case "tif": DWObject.SaveAsTIFF(fileName, props.buffer.current, onSuccess, onFailure); break;
case "png": DWObject.SaveAsPNG(fileName, props.buffer.current, onSuccess, onFailure); break;
case "pdf": {
DWObject.SaveAsPDF(fileName, props.buffer.current, onSuccess, onFailure)
}; break;
}
imagesToUpload.push(props.buffer.current);
console.log("props.buffer.current", props.buffer.current); //0
}
}
for (let o in Dynamsoft.DWT.EnumDWT_ImageType) {
if (o.toLowerCase().indexOf(saveFileFormat) !== -1 && Dynamsoft.DWT.EnumDWT_ImageType[o] < 7) {
fileType = Dynamsoft.DWT.EnumDWT_ImageType[o];
break;
}
}
}
I am following this GitHub repository. GitHub Link
If you know the answer to this question please tell me what should I do.
Steps to upload a file:
Initialize the file uploader:
Configure the target file, including file name and file type:
Upload the file to the server.
Alternative to the file uploader, you can invoke the
HTTPUpload()
method: