We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Windows 10 with Julia 1.5 and ImageMagick.jl v1.1.6. I cannot load Tiff files, if the path to the file contains german "Umlaute" (ä, ü, ö).
The error message is this:
ERROR: UnableToOpenBlob `c:\tmp\Übung\test.tif': No such file or directory @ error/blob.c/OpenBlob/2873
This works: load(joinpath("c:\", "tmp", "Uebung", "test.tif")) or load("c\tmp\Uebung\test.tif")
This does not load(joinpath("c:\", "tmp", "Übung", "test.tif")) or load("c\tmp\Übung\test.tif")
The file is the same in both cases. It works on Linux.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Windows 10 with Julia 1.5 and ImageMagick.jl v1.1.6. I cannot load Tiff files, if the path to the file contains german "Umlaute" (ä, ü, ö).
The error message is this:
This works:
load(joinpath("c:\", "tmp", "Uebung", "test.tif")) or load("c\tmp\Uebung\test.tif")
This does not
load(joinpath("c:\", "tmp", "Übung", "test.tif")) or load("c\tmp\Übung\test.tif")
The file is the same in both cases. It works on Linux.
The text was updated successfully, but these errors were encountered: