![]() |
I've dig a bit more on the problem. As i have understand how hylafax runs, there's a script called tiff2fax which is in charge of verifying and resizing the tiff image if it doesn't fit. It calls another utility called tiffcheck to check the tiff. It seems that tiffcheck is considering that if the page length is less than 30 mm bigger than the requested page length, it says that tiff doesn't need to be resized.
Here's the tiffcheck.c++ line (275)
if (pageLength != (uint32) -1 && len > pageLength+30) {
Maybe this must be corrected to not accept page length difference
if (pageLength != (uint32) -1 && len > pageLength+0) {
Or maybe i could use the etc/FaxModify file to force resizing of all my faxes to the correct page length...
Others suggestions ?
____________________ HylaFAX(tm) Users Mailing List _______________________ To subscribe/unsubscribe, click http://lists.hylafax.org/cgi-bin/lsg2.cgi On UNIX: mail -s unsubscribe hylafax-users-request@xxxxxxxxxxx < /dev/null *To learn about commercial HylaFAX(tm) support, mail sales@xxxxxxxxx*