You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file TagFactory, you are using this method :
protected static function classnameFromTagname($tagname)
It's using datas coming from EXIF to generate the classname you are looking for. Here CreatorTool.
The issue is that in a picture I have, this CreatorTool is written Creatontool.(without the second uppercase on Tool).
Consequence, your software is looking for Creatortool class, which doesn't exist.
leading to this error.
Case mismatch between loaded and declared class names: PHPExiftool\Driver\Tag\XMPXmp\Creatortool vs PHPExiftool\Driver\Tag\XMPXmp\CreatorTool
On windows, I cannot create a second file with no uppercase, the system find them as identical.
(not case sensitive)
I see 2 ways of resolving this issue :
to put all tagname in uppercase and to rename the class using the same way.(or to put everything lowercase except the first character, your choice)
to change this method to check if the file exist, and if not to look for similar file / class (no idea on how to do this one)
What is your feedback ?
Best regards,
Pierre
The text was updated successfully, but these errors were encountered:
Hello.
In the file TagFactory, you are using this method :
protected static function classnameFromTagname($tagname)
It's using datas coming from EXIF to generate the classname you are looking for. Here CreatorTool.
The issue is that in a picture I have, this CreatorTool is written Creatontool.(without the second uppercase on Tool).
Consequence, your software is looking for Creatortool class, which doesn't exist.
leading to this error.
On windows, I cannot create a second file with no uppercase, the system find them as identical.
(not case sensitive)
I see 2 ways of resolving this issue :
What is your feedback ?
Best regards,
Pierre
The text was updated successfully, but these errors were encountered: