-
Notifications
You must be signed in to change notification settings - Fork 199
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
Seg fault when loading image file - v0.6.9 #587
Comments
Aleluya, can confirm this happens on my Mac m1 as well with the 0.6.x line. Thanks for your work on this! Also thankfully 0.5.9 is working without crashing. |
Thanks for reporting this! This might be related to a recent change with ImageMagick (previously reported), or it's something else. Can anyone with an M1 test the following with the latest from Homebrew? Allocation with context manager from wand.image import Image
with Image(filename="rose:") as img:
print(img) Genesis before allocation from wand.image import Image
from wand.resource import genesis as wand_genesis
wand_genesis()
img = Image(filename="rose:")
print(img) |
Aleluya
Second
thanks! |
Created merge request #588. If folks are able, please post evidence that the change worked. |
✝hanks! Seems to work placing |
I tried it again using the package from commit 587, with better results:
I noticed that I had version 0.6.7 installed. I reported that I was using 0.6.9. I had installed 0.6.9 from the command line but forgot to source the venv activate file first (d'oh). Fortunately, the issue wasn't dependent on that. Thank you, Eric and Brian, for your prompt attention to the issue. |
Wand 0.6.10 has been released to address this issue. Took a couple extra days to get the test matrix stable, but everything seems stable. |
I'm having trouble with Wand 0.6.9 on my M1 MacBook Pro:
Here is the top of the stack trace:
I'm using ImageMagick 7.1.0-45.
I've attached the full macOS analytics report.
Thanks!
Python-2022-08-10-124705.txt
The text was updated successfully, but these errors were encountered: