|
|
Browse by Tags
All Tags » MultiPage
-
I have many files (.jpeg, .gif) in my DB.
I need view all this images on WebThumbnailViewer, with my syntax i get view only one image.
I'm using the follow syntax:
MemoryStream streamImage=null;
DataRow[] rowDoc = dsWork.Tables[''Doc''].Select(''rowid= '120');
foreach (DataRow row in rowDoc)
{
streamImage = new ...
-
My objective is to write a browser based application to do the following:
Load one or more multi-page TIFF images from a directory
Allow viewing, reordering, and rotating of pages
Split or group ranges of pages into their own multi-page TIFF (or insert separator page to designate start of a new section/document)
Preferably use a TreeView to ...
-
That specific error message looks like the PDF decoder is not initialized when the asynchronous requests for the thumbnails are requested. To fix this issue, you can add the PDF Decoder to the RegisteredDecoders on the Page Init event.
I have a suggestion that may improve your performance for this situation (Once you get the PDF loading): ...
-
I am displaying image on WebImageViewer and it successfully get displayed on my machine.
But while deploying application on other machine which donot have Visual Studio 2005 but have .Net Framework 3.0, the image doesnot get displayed.
Pls help!
-
Hi,
I would like to use a WebImageViewer on Multipage TIFF, but without the ThumbnailViewer.
So, I need to be able to implement a page management system.
I created a custom control implementing WebImageViewer.
I added some properties such as CurrentPage and Pagecount to be able to keep track of the pages.
I also added a changePage ...
|
|
|