wand icon indicating copy to clipboard operation
wand copied to clipboard

The ctypes-based simple ImageMagick binding for Python

Results 32 wand issues
Sort by recently updated
recently updated
newest added

I'm having trouble with Wand 0.6.9 on my M1 MacBook Pro: ``` Python 3.9.13 (main, Aug 7 2022, 01:19:39) [Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin Type "help", "copyright", "credits" or "license"...

bug

The following code behaves as expected: ```python from wand.image import Image # MUST BE RUN BEFORE `from transformers import ... ` or will produce silent failure from transformers import PreTrainedTokenizer...

I'm running Ubuntu 21.10, Python 3.9.7 and Wand 0.6.7. There is an issue if my python code first does some pyplot stuff and then drawing an rounded rectangle using wand....

seeking-help

I am ending up with an error when I use the below code when its run in docker. ``` try: with skew(blob=img_png) as img_png_1: img_png_1.deskew(0.5 * img_png_1.quantum_range) pil_image = Image.open(io.BytesIO(img_png_1.make_blob("png")))...

seeking-help

Ref: https://github.com/emcconville/wand/issues/564 I think the following codes are messing with outline. ``` ########## main func for image rendering ############## def export_caption(caption, filename): '''Creates a .png file suitable for bdsup2sub that...

In Ubuntu 18.04 LTS, the `libmagickwand-6.q16-3` package installs the wand libraries at: * `/usr/lib/x86_64-linux-gnu/libMagickCore-6.Q16.so.3` * `/usr/lib/x86_64-linux-gnu/libMagickWand-6.Q16.so.3` `import wand` finds these, but it takes ~700ms to do because it runs `ctypes.find_library`...

Python 3.6 only atm. (I was skipping Python 3.6 previously, so this may have been a problem before but wasnt noticed. I'll re-run with Python 3.6 skipped so I can...

Currently the latest version of Jython is compatible to Python 2.5. When Jython becomes compatible to Python 2.6 or higher someday, we should suport Jython as well. Watch the Jython...

enhance

I can get the supported formats using `wand.version.formats`, but how do I also get the supported mode for each format similar to the output from `identify -list format`?

seeking-help