Hi i just want to know, will GroupDocs pngviewer supports search and highlight or not.
if it supports means i need some references.
Hi i just want to know, will GroupDocs pngviewer supports search and highlight or not.
if it supports means i need some references.
GroupDocs.Viewer does support extracting text with coordinates and this data can be used for search and highlight feature, see the related documentation article Image Viewer - Get text coordinates. Do you use some client-side UI solution?
Hi. Thanks for your support.
Yes I’m using jQuery viewer.js and viewer.css
You’re welcome!
Please note that when retrieving text coordinates as it is shown in the Image Viewer - Get text coordinates
article you have to set ExtractText
to true
on PngViewOptions
too. When ExtractText
is enabled Viewer will use an appropriate rendering engine so you could match the output images with the text coordinates.
using (Viewer viewer = new Viewer("sample.docx"))
{
PngViewOptions viewOptions = new PngViewOptions();
viewOptions.ExtractText = true;
viewer.View(viewOptions);
}
Okay. Thank you for your support