From: Vincent Vanwaelscappel Date: Tue, 26 Aug 2025 16:40:11 +0000 (+0200) Subject: #7704 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=cb533380d96affc3ac7a74464e1523922b916b46;p=cubist_util.git #7704 --- diff --git a/src/CommandLine/Poppler.php b/src/CommandLine/Poppler.php index 567a660..f4f5eba 100644 --- a/src/CommandLine/Poppler.php +++ b/src/CommandLine/Poppler.php @@ -114,7 +114,9 @@ class Poppler public static function extractAreaFilehash($file, $page, $rect, $options): string { $f = Files::hashFileAttributes($file) . '||' . '++' . json_encode($rect) . '**' . json_encode($options) . '||' . $page . '!!'; - return hash('sha256', $f); + $hash = hash('sha256', $f); + error_log($f, $hash); + return $hash; } /**