Search found 22 matches

by payne296
Fri Jul 22, 2011 6:53 am
Forum: Customer Reviews
Topic: Great Product, Great Service
Replies: 1
Views: 16191

Great Product, Great Service

I have a document management application (Columbus, Ohio - United States) that leverages the GdPicture barcode, TWAIN and PDF functionalities. I originally used a mixture of other technologies to accomplish this (iTextSharp, Vintasoft) and ended up trying out GdPicture for its OCR capabilities. Whil...
by payne296
Fri Jul 22, 2011 6:26 am
Forum: PDF
Topic: Large PDF Memory Issues (OutOfMemoryException)
Replies: 1
Views: 2547

Large PDF Memory Issues (OutOfMemoryException)

Hi all, I'm having issues with the PDF plugin throwing OutOfMemory exceptions (this issue also existed in v7). I'm trying to create 10 PDFs, 2000 - 3000 pages each. The first five or six finish correctly, but during the seventh I run out of memory. (I am calling pdf.CloseDocument() after I call pdf....
by payne296
Thu Jul 21, 2011 4:39 pm
Forum: Licensing
Topic: Upgrading from v7
Replies: 9
Views: 18480

Re: Upgrading from v7

Thanks Loic, it turns out I just needed to do pdf.NewPDF() after GdPicturePDF pdf = new GdPicturePDF();
by payne296
Wed Jul 20, 2011 7:43 pm
Forum: Licensing
Topic: Upgrading from v7
Replies: 9
Views: 18480

Re: Upgrading from v7

Hello again, How does the license number upgrade get set in the PDF class? I tried just setting the main SetLicenseNumberUpgrade of the GdPictureImaging class, but it told me the feature needed to be unlocked. I'm just trying to save a PDF, which is obviously functionality that existed by default in...
by payne296
Wed Jul 20, 2011 3:06 pm
Forum: Licensing
Topic: Upgrading from v7
Replies: 9
Views: 18480

Re: Upgrading from v7

Thanks Elodie
by payne296
Wed Jul 20, 2011 12:12 am
Forum: Licensing
Topic: Upgrading from v7
Replies: 9
Views: 18480

Re: Upgrading from v7

Sounds good. The only other question I had was about the PDF plugin. Is the old PDF functionality still available in the main package? I don't want to upgrade if I'm going to lose my PDF functionality.

Thanks!
by payne296
Tue Jul 19, 2011 2:28 pm
Forum: Licensing
Topic: Upgrading from v7
Replies: 9
Views: 18480

Upgrading from v7

Hi all,

I currently run on GdPicture SDK v7 and am considering upgrading to v8. I upgraded from v6 to v7 last year, and I wanted to confirm that I wouldn't have any problems upgrading from my v7 upgrade to v8.
by payne296
Fri Apr 29, 2011 3:41 pm
Forum: PDF
Topic: PdfAddTrueTypeFont OutOfMemory
Replies: 9
Views: 5866

Re: PdfAddTrueTypeFont OutOfMemory

Working like a charm now, thanks for the help!
by payne296
Thu Apr 28, 2011 6:34 pm
Forum: PDF
Topic: PdfAddTrueTypeFont OutOfMemory
Replies: 9
Views: 5866

Re: PdfAddTrueTypeFont OutOfMemory

Thanks Loic, tomorrow should be fine. I appreciate the quick response!
by payne296
Thu Apr 28, 2011 4:21 pm
Forum: PDF
Topic: PdfAddTrueTypeFont OutOfMemory
Replies: 9
Views: 5866

Re: PdfAddTrueTypeFont OutOfMemory

The problem still exists. I don't think the issue is actually with the PdfAddTrueTypeFont method, but with the fact that the font that is added with that method is not disposed with PdfEndPdf. Here is, in short, what I'm doing. for (int i = 0; i < paths.Length; i++) { int pdf = gdPictureImaging.PdfN...
by payne296
Wed Apr 27, 2011 2:19 pm
Forum: PDF
Topic: PdfAddTrueTypeFont OutOfMemory
Replies: 9
Views: 5866

Re: PdfAddTrueTypeFont OutOfMemory

Is this update still on track for this week?
by payne296
Thu Apr 21, 2011 7:02 pm
Forum: Image Processing & Document Imaging
Topic: GdPicture.NET.pdf.gdpdfplug.dll Error
Replies: 10
Views: 6830

Re: GdPicture.NET.pdf.gdpdfplug.dll Error

In that case I would just try to put it where your GdPicture.dll is.
by payne296
Thu Apr 21, 2011 6:37 pm
Forum: PDF
Topic: PdfAddTrueTypeFont OutOfMemory
Replies: 9
Views: 5866

Re: PdfAddTrueTypeFont OutOfMemory

Thanks Loic, I'm not sure why GDI has to be so finnicky.
by payne296
Thu Apr 21, 2011 6:33 pm
Forum: Image Processing & Document Imaging
Topic: GdPicture.NET.pdf.gdpdfplug.dll Error
Replies: 10
Views: 6830

Re: GdPicture.NET.pdf.gdpdfplug.dll Error

Assuming you're using Visual Studio, the build path is should be the active "bin" folder for the project you're working on. So if your project is a Console Project called ConsoleGdTest, the correct location would be something like "C:\Users\YourName\Visual Studio 20XX\Projects\Console...
by payne296
Thu Apr 21, 2011 6:17 pm
Forum: Image Processing & Document Imaging
Topic: Corrupted Image
Replies: 1
Views: 2749

Re: Corrupted Image

The corruption seems to occur in CreateGdPictureImageFromFile. Like I said, it works 99.9% of the time, but here is the code that has issues. public int GetGdPictureImage() { return gdPictureImaging.CreateGdPictureImageFromFile(this.cachePath); } I've replaced that code block with the following bloc...