RicoCasta / opencinematools

Automatically exported from code.google.com/p/opencinematools
0 stars 0 forks source link

libtiff.dll error #9

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. In trying to run the DCPMAKER.exe I get a missing libtiff.dll error. I 
made sure it is in the system32 directory and I added to the 
opencinematools folder.  Any other suggestions?

Thank you for creating this app - it looks like it will be incredibly 
helpful once I get it up and going!

Original issue reported on code.google.com by sombrill...@yahoo.com on 3 Aug 2009 at 8:27

GoogleCodeExporter commented 8 years ago
Ok, same here. The opencinematools-1.1.2-bin-win32 package is missing 
libtiff3.dll. I
installed the version that came with the source package (Version 3.8.2.2278) 
into the
bin directory and it works fine.

I checked the build commandline for image_to_j2k in the source and found a typo
(libtif3.dll, but should read libtiff3.dll):

 if not exist  ..\..\bin\$(ConfigurationName) mkdir  ..\..\bin\$(ConfigurationName)
 copy ..\..\dep\libtiff\lib\libtif3.dll ..\..\bin\$(ConfigurationName)
 copy ..\..\dep\libtiff\lib\jpeg62.dll ..\..\bin\$(ConfigurationName)
 copy ..\..\dep\libtiff\lib\zlib1.dll ..\..\bin\$(ConfigurationName)

so this here should work better:

if not exist  ..\..\bin\$(ConfigurationName) mkdir  
..\..\bin\$(ConfigurationName)
copy ..\..\dep\libtiff\lib\libtiff3.dll ..\..\bin\$(ConfigurationName)
copy ..\..\dep\libtiff\lib\jpeg62.dll ..\..\bin\$(ConfigurationName)
copy ..\..\dep\libtiff\lib\zlib1.dll ..\..\bin\$(ConfigurationName)

Original comment by fr...@opticalart.de on 11 Sep 2009 at 9:12