Search found 16 matches

by clocklear
Fri Oct 15, 2010 1:39 pm
Forum: General discussions
Topic: Stripped TIFF vs Tiled TIFF
Replies: 3
Views: 12011

Re: Stripped TIFF vs Tiled TIFF

Hi Loïc,

That's what I've ended up doing; using LibTiff.NET to take my GdPicture output and convert the encoding scheme. It's all working now, thanks for a great product.
by clocklear
Thu Oct 14, 2010 4:56 pm
Forum: General discussions
Topic: Stripped TIFF vs Tiled TIFF
Replies: 3
Views: 12011

Stripped TIFF vs Tiled TIFF

Hello, We use GdPicture to create TIFF images of documents for our business partners. A new partner is stating that our images will not work with their system because they are 'stripped': “They images are stripped. Our software is unable to process stripped images. Please contact your supply to reco...
by clocklear
Mon Mar 08, 2010 5:27 pm
Forum: Image Processing & Document Imaging
Topic: Can't find DLL entry point OpenFileU@4
Replies: 1
Views: 1910

Can't find DLL entry point OpenFileU@4

When upgrading to the latest version of GDPicturePro activex, issuing the following code: thisform.oGDVIEWER.DisplayFromFile("&cFile") gives the following error: OLE IDispatch exception code 0 from GdPicturePro5: Can't find DLL entry point _GDIMGPLUG_OpenFileU@4 in gdimgplug.dll.. The ...
by clocklear
Thu Jan 21, 2010 4:40 pm
Forum: Image Processing & Document Imaging
Topic: Possible Windows 7 Related Bug
Replies: 3
Views: 2258

Re: Possible Windows 7 Related Bug

Email sent. Sorry for the delay.
by clocklear
Wed Jan 13, 2010 10:38 pm
Forum: Image Processing & Document Imaging
Topic: Possible Windows 7 Related Bug
Replies: 3
Views: 2258

Possible Windows 7 Related Bug

I think I just found a bug you might want to know about: PROCEDURE ConvertTIFToFax LPARAMETERS cInFile, cOutFile WITH oImaging AS GdPicturePro5.Imaging LOCAL nImage,nPgCnt,nNewImage,lnPageCnt,n,nNewMultiPage,lcTmpFile lcTmpFile = SYS(3)+SYS(2015)+'.TIF' COPY FILE "&cInFile" TO "&a...
by clocklear
Mon Jun 22, 2009 8:13 pm
Forum: Example requests & Code samples
Topic: Displaying a word document into GdViewer
Replies: 9
Views: 6185

Re: Displaying a word document into GdViewer

Ok so I moved it to another computer and it works... the only difference I believe is that the other machine has Office 2007 and my workstation has Office 2003.
by clocklear
Mon Jun 22, 2009 7:46 pm
Forum: Example requests & Code samples
Topic: Displaying a word document into GdViewer
Replies: 9
Views: 6185

Re: Displaying a word document into GdViewer

Replicating exactly what you have posted I still get error 7. :(

Is there any way to pull out any more debugging information?
by clocklear
Mon Jun 22, 2009 7:10 pm
Forum: Example requests & Code samples
Topic: Displaying a word document into GdViewer
Replies: 9
Views: 6185

Re: Displaying a word document into GdViewer

I just upgraded to the latest version and still the same problem. I am using FoxPro 9 SP2. Here is a code excerpt: PROCEDURE DOCtoTIF LPARAMETERS cInDoc,cOutTIF LOCAL oWord As Object,lcTmpFile as String oWord = CreateObject("Word.Application") oWord.Documents.Open("&cInDoc", ...
by clocklear
Mon Jun 22, 2009 4:59 pm
Forum: Example requests & Code samples
Topic: Displaying a word document into GdViewer
Replies: 9
Views: 6185

Re: Displaying a word document into GdViewer

Loic, when I perform this in my code, I get error 7 (Win32Error) when trying to display clipboard data. Any ideas why? It works when I manually copy an image to the clipboard, but not when I use the Word code.
by clocklear
Thu Apr 17, 2008 2:48 pm
Forum: Image Processing & Document Imaging
Topic: Strange OLE Error
Replies: 1
Views: 1467

Strange OLE Error

Hi, I wrote an addon for my software that will allow the end user to append documents from a TWAIN source to an existing document. The code works fine on my development machine, but I get the following error on every other machine I try it on. http://www.corylocklear.com/images/SCANNINGERROR.JPG The...
by clocklear
Thu Feb 21, 2008 5:27 pm
Forum: Example requests & Code samples
Topic: Convert from PDF to multipage Tiff or JPEG
Replies: 12
Views: 35511

Re: Convert from PDF to Tiff

Can you convert the image format while converting from PDF to Tiff?

For instance my PDF is a 12 page color document and I want a single method to convert it to a black and while multipage Tif. All examples I have seen use single images and not multipage images.
by clocklear
Thu Jan 24, 2008 8:11 pm
Forum: Image Processing & Document Imaging
Topic: Saving as PDF - File size issues
Replies: 4
Views: 3091

Re: Saving as PDF - File size issues

Wouldn't this cause all the PDFs from that machine to be huge? The problem I am referring to happens to random machines (my executable is installed on about 10) and not every time. Happens about 1 every 100 pdfs.
by clocklear
Thu Jan 24, 2008 2:48 pm
Forum: Image Processing & Document Imaging
Topic: Help with properly closing files after processing
Replies: 1
Views: 1828

Re: Help with properly closing files after processing

Sounds like you aren't properly releasing the image handle for each image. CreateImageFromFile returns the image handle of the newly created image, and you pass this to the CloseImage method like this: 'sImagepath = InputBox("Please input the image file path e.g. c:\image1.jpg") Set ogdpic...
by clocklear
Wed Jan 23, 2008 3:16 pm
Forum: Image Processing & Document Imaging
Topic: Saving as PDF - File size issues
Replies: 4
Views: 3091

Saving as PDF - File size issues

I'm capturing multipage documents (anywhere from 5-30 pages) into a single PDF and I have found that a good tradeoff between size and quality can be achieved with the following settings: AutoBrightness = true AutomaticBorderDetection = true AutomaticDeskew = true CurrentBitDepth = 2 CurrentPixelType...