Search found 19 matches

by acl
Sat Jan 19, 2013 12:28 pm
Forum: OCR, MRC & Document understanding
Topic: Bug in OCR engine?
Replies: 1
Views: 3271

Bug in OCR engine?

I am observing some very strange behaviour when OCRing a fairly clean region of a 400 dpi scanned page. Please check out the attached files (which are 1bpp when fed to the OCR engine). The file good.gif contains four clear numbers plus some noise at the bottom. All the numbers are correctly recogniz...
by acl
Tue Nov 13, 2012 11:54 am
Forum: Document Viewing
Topic: GdViewer behavior when zooming
Replies: 1
Views: 2670

GdViewer behavior when zooming

We are using GdPicture 9.3.0.3 (Ultimate SDK). There are a problems with zooming in GdViewer. First: calling ZoomIN followed by ZoomOUT should leave the view unchanged. Well it doesn't. The view is a little bit zoomed out compared to the starting point. So ZoomOUT seems to be using a larger factor t...
by acl
Sat Oct 06, 2012 2:28 pm
Forum: PDF
Topic: Page orientation when printing PDFs
Replies: 4
Views: 3120

Re: Page orientation when printing PDFs

Here is the code:

Code: Select all

Dim filename = "C:\test.pdf"
Dim pdf As New GdPicturePDF
If pdf.LoadFromFile(filename, False) = GdPictureStatus.OK Then
	pdf.PrintSetAutoRotation(True)
	pdf.PrintSetFromToPage(1, pdf.GetPageCount())
	pdf.PrintSetCopies(1)
	pdf.PrintFit()
	pdf.CloseDocument()
End If
by acl
Wed Oct 03, 2012 8:34 am
Forum: PDF
Topic: Page orientation when printing PDFs
Replies: 4
Views: 3120

Page orientation when printing PDFs

Hi, when printing PDF documents, PrintSetAutoRotation(True) shoud mean that GdPicture figures out the orientation of each page automatically, right? I have a PDF file with a single page; GetPageWidth = 841.89 and GetPageHeight = 595.28. This appears to be correct, since the page is in landscape form...