Skip to content

Commit 17eb804

Browse files
update to internal commit 9014d680
1 parent 7facc87 commit 17eb804

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

faq/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ permalink: /faq/
141141

142142
<li><a href="{{site.faq}}support-image-deskew.html">Do you support image deskew?</a></li>
143143

144-
<li><a href="{{site.faq}}resize-image.html">How can I resize all images to meet a certain size standard (e.g. A4 size)</a></li>
144+
<li><a href="{{site.faq}}set-page-size.html">How can I configure all scanned images to conform to a specific size standard (e.g., A4)?</a></li>
145145

146146
<li><a href="{{site.faq}}add-annotation-to-image.html">Can I add annotation to an image (e.g. add watermark or text)?</a></li>
147147

faq/protect-sensitive-information.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ permalink: /faq/protect-sensitive-information.html
1313

1414
## Can I protect sensitive information of an image from being seen?
1515

16-
No, currently this functionality is not available, but our development team is working on an <a href="{{site.info}}schedule/proposed.html#add-annotations" target="_blank">annotation</a> feature which can be used to protect sensitive information.
16+
If you need to modify an image by concealing certain areas permanently, you can use the <a href="{{site.info}}api/WebTwain_Edit.html#erase" target="_blank">erase()</a> method. This method is particularly useful when the requirement involves replacing a rectangular region within the image with a solid white block.
1717

18-
Another Use Case: If you want to modify the image and not only hide some parts of the image, then you can try using the <a href="{{site.indepth}}features/edit.html#cutting-cropping-and-copying" target="_blank">erase()</a> method. So, if the request is to replace a rectangle area of an image with a specific color block, then erase() can help achieve that.
18+
On the other hand, if you prefer a customizable and removable layer to temporarily conceal particular content, our newly developed Annotation feature is just what you need. For comprehensive details about this feature, please click on the following link: <a href="{{site.faq}}dwt-with-annotation.html">How can I add annotations to an image and then save/upload it?</a>
Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,21 @@
22
layout: default-layout
33
noTitleIndex: true
44
needAutoGenerateSidebar: true
5-
title: How can I resize all images to meet a certain size standard (e.g. A4 size)?
6-
keywords: Dynamic Web TWAIN, Image Editing, resize image, A4
7-
breadcrumbText: How can I resize all images to meet a certain size standard (e.g. A4 size)?
8-
description: How can I resize all images to meet a certain size standard (e.g. A4 size)?
9-
permalink: /faq/resize-image.html
5+
title: How can I configure all scanned images to conform to a specific size standard (e.g., A4)?
6+
keywords: Dynamic Web TWAIN, Image Editing, page size, A4
7+
breadcrumbText: How can I configure all scanned images to conform to a specific size standard (e.g., A4)?
8+
description: How can I configure all scanned images to conform to a specific size standard (e.g., A4)?
9+
permalink: /faq/set-page-size.html
1010
---
1111

1212
# Image Editing
1313

14-
## How can I resize all images to meet a certain size standard (e.g. A4 size)?
14+
## How can I configure all scanned images to conform to a specific size standard (e.g., A4)?
1515

1616
Simply, you can use <a href="{{site.info}}api/WebTwain_Acquire.html#pagesize" target="_blank">PageSize</a> to set the page size to be used when acquiring images.
1717
Or you can leverage the negotiation capabilities functionality by following the steps mentioned below.
1818

1919
1. ask for the supported sizes of your device.
20-
2120
```javascript
2221
DWTObject.getCapabilities(
2322
function (result) {
@@ -37,7 +36,6 @@ DWTObject.getCapabilities(
3736
```
3837

3938
2. set the page size to a size standard as needed.
40-
4139
```javascript
4240
DWTObject.setCapabilities(
4341
{

0 commit comments

Comments
 (0)