vips icon indicating copy to clipboard operation
vips copied to clipboard

Go Bindings for Vips (a super fast image processor)

Results 17 vips issues
Sort by recently updated
recently updated
newest added

some jpg will distortion

Support trimming Rif.: https://github.com/jcupitt/libvips/issues/233#issuecomment-73486391

The project owner is no longer maintaining this and there are a number of issues. I suggest looking at: https://github.com/h2non/bimg

Hi. Vips has vips_gifload and vips_webpload functions. Why don't you use them? Also you determine image type by byte_marker, could you please check if [http.DetectContentType](https://golang.org/pkg/net/http/#DetectContentType) function is more suitable for...

I know this is not the best thing but will allow two things: 1. Don't have to install libvips/libjpeg and friends 2. Avoid nasty configurations (since will be bundle with...

I was install vips on a remote server running Debian linux. At first I was compiling libvips from Git source according to README.md, but it took me a lot of...

The attached patch addresses this crash, which happens with specific ill-formed jpegs. ``` diff --git a/vips.go b/vips.go index 36118e1..14cd90a 100644 --- a/vips.go +++ b/vips.go @@ -311,6 +311,10 @@ func Resize(buf...

Resize creates quite soft, blurry images as it does not apply any sharpening to the resized image. I've added optional support to Resize for sharpening the image as a final...

vips-7.38.5 go get github.com/daddye/vips /opt/go/src/github.com/daddye/vips/vips.go:129: cannot use &image (type *__Ctype_struct__VipsImage) as type *__Ctype_VipsImage in function argument /opt/go/src/github.com/daddye/vips/vips.go:131: cannot use &image (type *__Ctype_struct__VipsImage) as type *__Ctype_VipsImage in function argument /opt/go/src/github.com/daddye/vips/vips.go:225: cannot...