pyvips
pyvips copied to clipboard
python binding for libvips using cffi
It seems strange that pkgconfig is listed as a runtime dependency in https://github.com/libvips/pyvips/blob/master/setup.py#L85 When it is only used in pyvips_build https://github.com/libvips/pyvips/blob/master/pyvips/pyvips_build.py#L3 Is it really required during standard runtime? If not,...
**What am I trying to do** Make a huge image from Gaia's Milky Way point cloud data **tl;dr** Simplified: I'm able to create `x by y` sized tiles in memory...
Hi I use pyvips for serving images with different operations on image (with fastapi and gunicorn with uvicorn) I use these codes in functions and pass from one to another:...
With python multiprocess programming, there was no acceleration when I used pyvips to generate 4 pyramid tiffs. Tiffs was created slowly, as if in series. Do you have a suggestion?...
``` import pyvips, numpy as np i = pyvips.Image.new_from_memory(np.zeros((3, 3), dtype=np.uint8), format='uchar', width=3, height=3, bands=1) a = np.array([i], dtype=object) ``` In older numpy versions, up to at least 1.19.3, this...
Just install latest pyvips (first install on my local machine as I was previously working on a VM) I don't get it: seen this issue before on the forum (https://github.com/kleisauke/net-vips/issues/3)...
I have a image like below:  I want to scale it and write to buffer or file, how to do it?
I have a use case that needs to add watermarks to large images multiple times to create watermark patterns that spreads on destination image. The code is very simple. Just...
I wish to resize an image overriding the aspect ratio. I couldn't find a way to do this. Is there a way to directly give the required size overriding the...
I have 8 different multipage TIF stacks which I would like to merge into a single TIF stack in order to have an easier way to extrapolate the data I...