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

When using the following code to read in an .HEIC file with height=4032 pixels and width=3024 pixels it automatically sets the img.width to 4032 and the img.height to 3024. This...

Hi, given Ubuntu 18.04/python3.7.5 or FreeBSD 13.2/python 3.10.11, `Wand` 0.6.13 and simple code below: ```python #!/usr/bin/env python3 import time from joblib import Parallel, delayed from wand.color import Color def print_color(ix:...

I have a set of ImageMagick commands which I am attempting to convert to the Wand equivalents, and I am having trouble replicating this. The goal of the image is...

This is related to issue #645 , where the user received error message ``` File "/Users//opt/anaconda3/envs//lib/python3.11/site-packages/wand/api.py", line 143, in load_library raise IOError('cannot find library; tried paths: ' + repr(tried_paths)) ```...

See issue #642 Confirmed `pip install wand` and `>>> from wand.image import Image` works correctly based on the update installation methods on Debian and Fedora. Since the user of the...

Based on my own testing, and looking through the Debian package builds, it seems that installing `imagemagick` would be much more lean and therefore preferable to installing `libmagickwand-dev`. For example,...

```python library.MagickSetOption(page.wand, "quantum:polarity", "min-is-white") ``` now results in the exception ``` ctypes.ArgumentError: argument 2: TypeError: wrong type ```

The `Wand-0.6.12.tar.gz` sdist on PyPI contains a `pyproject.toml` but said file isn't present in the git repo. Could you add it, please? That said, I've noticed because I wanted to...

dist
build

I'm sometimes getting "glitchy" imagery when my background uses "checkerboard" and I draw shapes. It happens about 40% of the time. Code sample to (sometimes) reproduce the issue: ``` from...

# ENV: wand.version.VERSION: 0.6.11 windows server 2022 python 3.8.10 # INPUT ``` from wand.image import Image with Image(filename='images/hummingbird.jpg' ,units='pixelsperinch') as img: # 330, 252 print(f"size: {img.size}") print(f"resolution: {img.resolution}") ``` #...