Search found 352 matches

by SamiKharma
Sun Aug 03, 2014 11:04 am
Forum: OCR, MRC & Document understanding
Topic: save in memory as searchable pdf
Replies: 1
Views: 6129

Re: save in memory as searchable pdf

Hi, You need to: 1. create a GdPicturePDF object using GdPicturePDF.New() 2. Add your images one by one to the GdPicturePDF you created (please see Tiff to PDF sample demo for the code). 3. Finally, you can save the resulting PDF to memory using any of the SaveToStream overloads of the GdPicturePDF ...
by SamiKharma
Sun Aug 03, 2014 11:01 am
Forum: General discussions
Topic: problem with kodak i2000
Replies: 1
Views: 4122

Re: problem with kodak i2000

Hi,

We would need more to go on, please see:
viewtopic.php?t=1486

Best,
Sami
by SamiKharma
Sun Aug 03, 2014 10:56 am
Forum: Example requests & Code samples
Topic: HTML to PDF
Replies: 3
Views: 5783

Re: HTML to PDF

Hi,

Unfortunately this is not possible as of yet.

Best,
Sami
by SamiKharma
Sun Aug 03, 2014 10:52 am
Forum: Image Processing & Document Imaging
Topic: Problem generating thumbnail
Replies: 4
Views: 4315

Re: Problem generating thumbnail

Hi,

Thank you for pointing out the problem to us. While we work on it, please use the function CreateThumbnailHQ instead.

Best,
Sami
by SamiKharma
Sun Jul 20, 2014 12:09 pm
Forum: PDF
Topic: GetPageTextWithCoords font size
Replies: 3
Views: 3834

Re: GetPageTextWithCoords font size

Hi Vincent, I am pasting the answer you got on the support platform here so other users can make use of it. This is a very complex notion as it involves fonts and typographic concepts. Basically the returned font size is not what you may think it is because the name is quite misleading (and I agree,...
by SamiKharma
Thu Jul 17, 2014 6:10 pm
Forum: Example requests & Code samples
Topic: Fillable and Saveable PDF form
Replies: 4
Views: 6015

Re: Fillable and Saveable PDF form

Hi,

Yes, please check the entry FormFields:
https://www.gdpicture.com/guides/gdpicture/GdP ... thods.html

Best,
Sami
by SamiKharma
Thu Jul 17, 2014 6:07 pm
Forum: PDF
Topic: GetPageTextWithCoords font size
Replies: 3
Views: 3834

Re: GetPageTextWithCoords font size

Hi,

From the documentation of the function: Returned coordinates are given in points = 1/72 inches.

Best regards,
Sami Kharma
GdPicture Support
by SamiKharma
Thu Jul 17, 2014 6:04 pm
Forum: Example requests & Code samples
Topic: Select twain source as a html drop down menu
Replies: 4
Views: 4868

Re: Select twain source as a html drop down menu

Hi, This is a high level app request, meaning it should not be included in the SDK. The SDK returns the available resources, the application should list then in which ever way the app developers deem reasonable. Also, please do not duplicate the form multiple times, it just trashes the forum with th...
by SamiKharma
Mon Jul 07, 2014 10:00 am
Forum: Example requests & Code samples
Topic: Crop Image After Zooming
Replies: 1
Views: 2972

Re: Crop Image After Zooming

Hi, This is very easy to accomplish: 1. Get the displayed area after zooming using GdViewer.GetDisplayedArea https://www.gdpicture.com/guides/gdpicture/GdPicture.NET.10~GdPicture10.GdViewer~GetDisplayedArea.html 2. Copy that region to a new GdPictureImage identifier using GdViewer.CopyRegionToGdPict...
by SamiKharma
Mon Jul 07, 2014 9:57 am
Forum: Example requests & Code samples
Topic: Join or Stitch 2 Images
Replies: 1
Views: 3502

Re: Join or Stitch 2 Images

Hi, Yes, this can be easily done, what you need is to: 1. Create a new image with the size of both images (if you want to align horizontally them height of the biggest image, and the width of image 1 + width image 2). You can achieve that using https://www.gdpicture.com/guides/gdpicture/GdPicture.NE...
by SamiKharma
Wed Jun 11, 2014 2:56 pm
Forum: OCR, MRC & Document understanding
Topic: OCR incorrect Result
Replies: 1
Views: 6385

Re: OCR incorrect Result

Hi, This document is very bad quality. It is poorly acquired, polluted by noise, blurry and highly degraded by way too much JPEG compression. Documents to OCR have to meet minimum requirements such as sufficient resolution (200 DPI at the very least, preferably 300 DPI) and good contrast/sharpness. ...
by SamiKharma
Tue Jun 10, 2014 10:46 am
Forum: PDF
Topic: Bold text with DrawTextBox
Replies: 5
Views: 4678

Re: Bold text with DrawTextBox

Hi, You can easily do that, all you have to do is set the resource font you want as bold, for example, create a font using https://www.gdpicture.com/guides/gdpicture/GdPicture.NET.10~GdPicture10.GdPicturePDF~AddTrueTypeFontU.html and mark the Bold parameter as true. Then use that font in DrawTextBox...
by SamiKharma
Sun Jun 08, 2014 10:08 am
Forum: Document Printing
Topic: Print PDF
Replies: 1
Views: 10197

Re: Print PDF

Hi,

Unfortunately we cannot do anything with the above code. Please check the GdPictureStatus returned from the Print function for more information. Shall you not know how to fix it afterwards please inform us of the status.

Best,
Sami
by SamiKharma
Sun Jun 08, 2014 10:02 am
Forum: Image Processing & Document Imaging
Topic: GenericError using TiffMergeFiles
Replies: 3
Views: 3731

Re: GenericError using TiffMergeFiles

Hi,

No, no known issues. It could be a series of things, most probably with your deployment, but we cannot tell since we cannot reproduce the error on our side.

Best,
Sami
by SamiKharma
Thu Jun 05, 2014 1:38 pm
Forum: PDF
Topic: GdPicture.NET 10
Replies: 7
Views: 5471

Re: GdPicture.NET 10

Hi, There is no example to give, if you loaded the thumbnail from a GdPictureImage, do not release the Image if you shall need it again. If you want to save a certain image, please use the the saving functions in the GdPictureImaging class. I think we should take a step back. You should probably see...