Changeset 113
- Timestamp:
- 12.12.2006 21:02:40 (2 years ago)
- Files:
-
- trunk/devel/FuzzyOcr.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/devel/FuzzyOcr.pm
r112 r113 444 444 } 445 445 } 446 447 if (defined($conf->{focr_max_size_gif}) and ( ((stat($tfile))[7])> $conf->{focr_max_size_gif})) {448 infolog("Fixed GIF file size ($ $pic{fsize}) exceeds maximum file size for this format, skipping...");446 my $fixedsize = (stat($tfile))[7]; 447 if (defined($conf->{focr_max_size_gif}) and ($fixedsize > $conf->{focr_max_size_gif})) { 448 infolog("Fixed GIF file size ($fixedsize) exceeds maximum file size for this format, skipping..."); 449 449 next; 450 450 }
