Wand needs the ImageMagick library to perform. When I do as they explain here my code works just fine on my computer.
However, when I freeze it with cx_freeze
it misses the extra library. I don't know how to add that library to the zip. I know how to add .dll
files into the folder, but I can't figure out which .dll
s Wand needs. When I tried putting all the .dll
s in the folder it ran but it couldn't convert images.
Update:
So I included CORE_RL_wand_*.dll
and CORE_RL_magick_*.dll
in the folder. Running it I gives me an error:
can't start because CORE_RL_bzlib_.dll is missing
I added that one and 20 others as it needed them. After that the app starts, but when I try to open and resize and covert an image, I get:
wand\resource.py line 223, wand.exception.MissingDelegateError: NoDecodeDelegateForThisImageFormat 'pathblah.jpg' @ error/constitute.c/ReadImage/552
I don't know how to get rid of this.