Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ productUrl: https://www.dynamsoft.com/web-twain/overview/
#productUrl: https://demo3.dynamsoft.com:808/dwt-harry/web-twain/overview/ # Preview URL
productName: Dynamic Web TWAIN
docHomePage: /web-twain/docs/

dynamsoft_logo: /web-twain/docs/assets/img-icon/dynamsoft-logo.png
dwt_logo: /web-twain/docs/assets/img-icon/dwt-logo.png
edit_icon: /web-twain/docs/assets/img-icon/edit-icon.png
Expand Down
2 changes: 1 addition & 1 deletion articles/hello-world/editing.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ APIs used:
if (DWTObject && DWTObject.HowManyImagesInBuffer > 0) {
var strUrl = "https://demo.dynamsoft.com/sample-uploads/";
var imgAry = [DWTObject.CurrentImageIndexInBuffer];
DWTObject.HTTPupload(
DWTObject.HTTPUpload(
strUrl,
imgAry,
Dynamsoft.DWT.EnumDWT_ImageType.IT_PNG,
Expand Down
2 changes: 1 addition & 1 deletion articles/hello-world/scan-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function AcquireImage() {
if (DWTObject && DWTObject.HowManyImagesInBuffer > 0) {
var strUrl = "https://demo.dynamsoft.com/sample-uploads/";
var imgAry = [DWTObject.CurrentImageIndexInBuffer];
DWTObject.HTTPupload(
DWTObject.HTTPUpload(
strUrl,
imgAry,
Dynamsoft.DWT.EnumDWT_ImageType.IT_PNG,
Expand Down
6 changes: 3 additions & 3 deletions articles/hello-world/uploading.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function upload() {
if (DWTObject && DWTObject.HowManyImagesInBuffer > 0) {
var strUrl = "https://demo.dynamsoft.com/sample-uploads/";
var imgAry = [DWTObject.CurrentImageIndexInBuffer];
DWTObject.HTTPupload(
DWTObject.HTTPUpload(
strUrl,
imgAry,
Dynamsoft.DWT.EnumDWT_ImageType.IT_PNG,
Expand Down Expand Up @@ -65,7 +65,7 @@ APIs used:

- [`HowManyImagesInBuffer`]({{site.info}}api/WebTwain_Buffer.html#howmanyimagesinbuffer){:target="_blank" rel="noreferrer noopener"}
- [`CurrentImageIndexInBuffer`]({{site.info}}api/WebTwain_Buffer.html#currentimageindexinbuffer){:target="_blank" rel="noreferrer noopener"}
- [`HTTPupload()`]({{site.info}}api/WebTwain_IO.html#httpupload){:target="_blank" rel="noreferrer noopener"}
- [`HTTPUpload()`]({{site.info}}api/WebTwain_IO.html#httpupload){:target="_blank" rel="noreferrer noopener"}
- [`Dynamsoft.DWT.EnumDWT_ImageType`]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_imagetype){:target="_blank" rel="noreferrer noopener"}
- [`Dynamsoft.DWT.EnumDWT_UploadDataFormat`]({{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_uploaddataformat){:target="_blank" rel="noreferrer noopener"}

Expand Down Expand Up @@ -113,7 +113,7 @@ Following this guide, your `HelloWorld.html` should look similar to this:
if (DWTObject && DWTObject.HowManyImagesInBuffer > 0) {
var strUrl = "https://demo.dynamsoft.com/sample-uploads/";
var imgAry = [DWTObject.CurrentImageIndexInBuffer];
DWTObject.HTTPupload(
DWTObject.HTTPUpload(
strUrl,
imgAry,
Dynamsoft.DWT.EnumDWT_ImageType.IT_PNG,
Expand Down
1 change: 1 addition & 0 deletions search.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ description: Dynamic Web Twain SDK Documentation Search
breadcrumbText: HomePage
h1: Dynamsoft Web TWAIN Document Search
permalink: /search.html
indexName: Crawler-DWT-Docs-New
---