Search found 10 matches

by random1
Thu Mar 09, 2023 9:33 pm
Forum: DocuVieware
Topic: Attachments and MSG Files
Replies: 1
Views: 3776

Attachments and MSG Files

Hi there. Just wondering if there is anything in the code samples that shows how to display attachments in Outlook files. If I create an email MSG file with an attachment, I can get them to load fine in the viewer, however the attachment doesn't show. One of the pages mentioned the attachments are i...
by random1
Mon Mar 21, 2022 5:57 pm
Forum: Image Processing & Document Imaging
Topic: Single Page TIff - Rotate Oddness
Replies: 3
Views: 6643

Re: Single Page TIff - Rotate Oddness

Thanks Hugo. Unfortunately sharing the code isn't really an option. However it can be replicated via: Dim testDoc As Integer = objImaging.CreateGdPictureImageFromFile("C:\Test\onepage.tif") Dim testDocPageCount As Integer = objImaging.TiffGetPageCount(testDoc) 'Result is 0 Dim testDocCurrP...
by random1
Tue Mar 15, 2022 3:08 pm
Forum: Image Processing & Document Imaging
Topic: Single Page TIff - Rotate Oddness
Replies: 3
Views: 6643

Single Page TIff - Rotate Oddness

Hi There. I have a solution that loads TIFFs from ByteArrays from a DB. I load the byte array into a image processor: primaryDocument = objImaging.CreateGdPictureImageFromByteArray(objImageBytes And then use the GD viewer to display: gdViewer.DisplayFromGdPictureImage(primaryDocument) All this works...
by random1
Thu Feb 10, 2022 9:14 pm
Forum: DocuVieware
Topic: Best Practice for Multiple Pages and Multiple Users
Replies: 3
Views: 5203

Re: Best Practice for Multiple Pages and Multiple Users

Thanks Fabio. This was the scenario: I have a page that displays a gridview with a row for every document we need to display. The Docuvieware control doesn't load any file until the user clicks an item in the grid. When they click a grid row, we query the DB and load it into the Docuvieware control ...
by random1
Fri Jan 28, 2022 9:29 pm
Forum: DocuVieware
Topic: Best Practice for Multiple Pages and Multiple Users
Replies: 3
Views: 5203

Best Practice for Multiple Pages and Multiple Users

I'm trying to work on an app where multiple pages will load TIFF files via the docuvieware control. This is a multiple user application where users can load different images on the same page based on whatever record they are viewing. For example: user1->page1->tiff1 then user1->Page1->tiff2 Then at ...
by random1
Fri Oct 29, 2021 1:50 pm
Forum: Image Processing & Document Imaging
Topic: Redaction - DrawFilledRectangle vs BurnAnnotationsToPage
Replies: 5
Views: 7366

Re: Redaction - DrawFilledRectangle vs BurnAnnotationsToPage

Thanks Fabio. My old snippet is below: intLeft = gdViewer.GetRectLeftOnDocument() intTop = gdViewer.GetRectTopOnDocument() intWidth = gdViewer.GetRectWidthOnDocument() intHeight = gdViewer.GetRectHeightOnDocument() Dim drawRecStatus As GdPictureStatus = objImaging.DrawFilledRectangle(redactedDocumen...
by random1
Thu Oct 21, 2021 4:21 pm
Forum: Image Processing & Document Imaging
Topic: Redaction - DrawFilledRectangle vs BurnAnnotationsToPage
Replies: 5
Views: 7366

Re: Redaction - DrawFilledRectangle vs BurnAnnotationsToPage

Thanks Fabio. The drawfilledrectangle seems to be working but I am noticinig something odd. When I add some of the rectangle blocks, the size of the image increases dramatically. For example, if I have a tiff that outputs to a 70k PDF, this increases to 700k when I add the rectangles. Is there a way...
by random1
Mon Oct 18, 2021 8:22 pm
Forum: Image Processing & Document Imaging
Topic: Redaction - DrawFilledRectangle vs BurnAnnotationsToPage
Replies: 5
Views: 7366

Redaction - DrawFilledRectangle vs BurnAnnotationsToPage

I have a .Net windows forms app that needs to redact TIFF images. I noticed the PDF library has specific redaction methods but nothing in the GDViewer/GdPictureImaging stack. I don't have a need to move/edit redactions and burn them with a separate button like the sample code does. I basically I nee...
by random1
Fri Jul 09, 2021 6:57 pm
Forum: DocuVieware
Topic: Redaction - Keep Original and Redaction
Replies: 1
Views: 4491

Redaction - Keep Original and Redaction

Thanks Loic. Maybe I will have to switch the to snap-in versus a custom button. One other question. For redactions, is it possible to keep both the original and redacted documents ? Say if there is a need to have one user group view the redacted documents and another view the non-redacted. I know in...
by random1
Wed Jul 07, 2021 4:06 pm
Forum: DocuVieware
Topic: Multiple Annotations with one click
Replies: 1
Views: 6667

Multiple Annotations with one click

Hi there. I've used an older version of GD Picture with winforms many years ago. We used to be able to do multiple redaction/annotations by putting the mouse into MouseMoseAreaSelection. So if the application needed to redact multiple sections of a file, we could change the mouse mode and allow user...