We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c745a9 commit bae581aCopy full SHA for bae581a
src/EXIFExtractor.php
@@ -6,7 +6,7 @@ class EXIFExtractor {
6
public static function extract($path) {
7
$exifData = @exif_read_data($path, 'ANY_TAG', true);
8
if (!$exifData) {
9
- return null; // Możesz tutaj obsłużyć błąd w inny sposób
+ return null;
10
}
11
12
return $exifData;
src/IPTCExtractor.php
@@ -23,7 +23,6 @@ class IPTCExtractor {
23
'2#116' => 'copyrightNotice',
24
'2#120' => 'caption',
25
'2#122' => 'captionWriter',
26
- // innych kodów IPTC, które chcesz obsługiwać
27
];
28
29
0 commit comments