Could not Load DLL procedure zlib1.dll

arijit95

New Member
Today, I tried to load the pdf template and I got the above error with code 3258. What type of error is this? Any help regarding this would be highly appreciated. I am running it on my Windows 8.1. Thanks in advance.
 

Osborne

Active Member
That exact file name was referenced in pdf_pre.i which was part of PDFInclude:
Code:
/******************************************************************************

  Program:      pdf_pre.i

Written By: Gordon Campbell
Written On: July 6, 2005

Description: Preprocessor defintions for PDFinclude

******************************************************************************/

&GLOBAL-DEFINE PDFDIR

&IF OPSYS = "UNIX" &THEN
&GLOBAL-DEFINE zlib /lib/libz.so.1
&ELSE
&GLOBAL-DEFINE zlib zlib1.dll
&ENDIF

&GLOBAL-DEFINE MD5LIB          c:\gord\PDFinclude2\dll\md5.exe
&GLOBAL-DEFINE pdfencryptlib   c:\gord\pdfinclude2\dll\procryptlib.dll
Are you using PDFInclude? Maybe the file is missing or it is a PROPATH issue.
 
Hi
Loading a template with pdfInclude makes use of zlib to decompress the internal objects in the pdf file.
the file zlib1.dll is distributed along with pdfInclude source code. Do you have it somewhere?
zlib1.dll should be present in one of the folders of the PATH environment variable of the operation system.
or you can change pdf_pre.i to put the absolute path in &GLOBAL-DEFINE zlib zlib1.dll
++
JC
 
Top