-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
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
Loading image fails on windows #183
Comments
Would you mind providing more details about this? How do you load that image, and is it a particular image or image format that causes this issue? It might be unrelated to this, but there's a new FileIO release v1.4.0 recently, probably you could take a try with an older version of FileIO? |
Sure, I'm trying to load CR2 files (raw pictures), using |
I get a very similar error trying to load raw DNG files on windows:
Edit: It doesn't help to downgrade FileIO.jl or ImageMagick.jl |
Got the same error on Linux too |
This may be an ImageMagick bug rather than a Julia bug, but until someone either dives in to the Julia code and tells us what they've found, or posts an image that others can use to reproduce the bug, there's precious little chance of doing anything about this. |
I downloaded DNG file from google's hdrplusdata. |
If I understand the code here correctly it's just doing a ccall into ImageMagick library : https://github.com/JuliaIO/ImageMagick.jl/blob/master/src/libmagickwand.jl#L272 And it looks like people get this kind of issues with the standalone tool : https://www.imagemagick.org/discourse-server/viewtopic.php?t=12881 |
TL DR: Missing Ok, so after some digging, I can verify that the problem occus using the c interface to the downloaded files (ImageMagick 6.9.10-12). And it is easy to reproduce using the binaries. However, the problem occurs because of the missing dependency
or by printing the complete error message when trying to convert the image
On linux I was able to solve it by installing I don't completely understand the delagation in ImageMagick, so I dont know if this is the right approach. |
I've cross-posted to JuliaPackaging/Yggdrasil#1421, where the build-script for ImageMagick appears to be stored: https://github.com/JuliaPackaging/Yggdrasil/blob/master/I/ImageMagick/build_tarballs.jl |
It isn't clear to me what's the problem exactly. My understanding is that |
I've got the same issue, it isn't fixed. |
The tests run fine on windows CI now. Please reopen if still an issue. |
Installing the package and using work but when I try to load an image (FileIO.load) I get :
Why is it looking for files in my temp folder, that seems a bit fishy ?
Julia 1.3, ImageMagick v1.1.5, I had previous versions that worked in the past.
The text was updated successfully, but these errors were encountered: