From e653f7d3b502f14fe4f65ea63d629c67e15226c9 Mon Sep 17 00:00:00 2001 From: lyzhang0113 Date: Wed, 29 Jul 2026 13:33:39 +0800 Subject: [PATCH] docs(faq): fix print-images-from-viewer FAQ to recommend PrintEx over deprecated Print Print() was deprecated as of DWT v19.3 in favor of PrintEx(), but the FAQ presented Print() as the primary API and PrintEx() as just a "selected images" variant. Swap the framing to match the current API docs. Co-Authored-By: Claude Sonnet 5 --- _articles/faq/print-images-from-viewer.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_articles/faq/print-images-from-viewer.md b/_articles/faq/print-images-from-viewer.md index bf87f514..bcb53cd3 100644 --- a/_articles/faq/print-images-from-viewer.md +++ b/_articles/faq/print-images-from-viewer.md @@ -7,12 +7,12 @@ keywords: Dynamic Web TWAIN, Image Viewer, print breadcrumbText: Can I print images from the viewer? description: Can I print images from the viewer? date: 2021-12-09 11:34:50 +0000 -last_modified: 2022-06-10 04:40:03 +0000 +last_modified: 2026-07-29 05:33:17 +0000 --- # Image Viewer ## Can I print images from the viewer? -Yes, you can print the images from the viewer by exporting all image data in the buffer to a new browser window and use the browser's default feature to print images. This can be achieved by using the [Print](/_articles/info/api/WebTwain_IO.md#print){:target="_blank"} API. -Note: The Print API prints all the images on the viewer, you can use [PrintEx](/_articles/info/api/WebTwain_IO.md#printex){:target="_blank"} to print only selected images. +Yes, you can print the images from the viewer by exporting the image data in the buffer to a new browser window and use the browser's default feature to print images. This can be achieved by using the [PrintEx](/_articles/info/api/WebTwain_IO.md#printex){:target="_blank"} API, passing the indices of all the images in the buffer to print all of them, or just the selected ones to print a subset. +Note: [Print](/_articles/info/api/WebTwain_IO.md#print){:target="_blank"} is an older API that also prints all images on the viewer, but it has been deprecated as of release 19.3 in favor of `PrintEx`.