bimg icon indicating copy to clipboard operation
bimg copied to clipboard

Go package for fast high-level image processing powered by libvips C library

Results 147 bimg issues
Sort by recently updated
recently updated
newest added

my `go env` ```bash GO111MODULE="on" GOARCH="amd64" GOBIN="" GOCACHE="/Users/zzz/Library/Caches/go-build" GOENV="/Users/zzz/Library/Application Support/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOINSECURE="" GONOPROXY="" GONOSUMDB="" GOOS="darwin" GOPATH="/Users/zzz/go" GOPRIVATE="" GOPROXY="direct" GOROOT="/usr/local/Cellar/go/1.14.2_1/libexec" GOSUMDB="off" GOTMPDIR="" GOTOOLDIR="/usr/local/Cellar/go/1.14.2_1/libexec/pkg/tool/darwin_amd64" GCCGO="gccgo" AR="ar" CC="clang" CXX="clang++" CGO_ENABLED="1"...

Can it generate slanted text watermark?

Added support for the OpenEXR image format

GoCV - 74.686ms Bimg - 3.292993s Same task with Imaging (github.com/disintegration/imaging) ~300ms // with python-cv ~150ms // with python PIL ~1.5s ```go package main import ( "fmt" "time" "github.com/h2non/bimg" "gocv.io/x/gocv"...

When trying to build for linux on Mac Big Sur (11.0.1) I get an error. I have seen previous issue (https://github.com/h2non/bimg/issues/151) however it remains unsolved. I can build for Mac...

Add position(left and top) to set the position of text watermark and allow 0 margin on text watermark this is sample of 0 margin, left(0), top(imageheight-fontheight) ![resize (1)](https://user-images.githubusercontent.com/26200571/87267359-af928900-c4f1-11ea-8556-5c64f0690723.jpeg)

Hello Am new to golang, working on a project to take a thumbnail from the first page of a pdf am using **bimg** package to help do the task but...

trying to create image from pdf file but getting error bimg vsn `github.com/h2non/bimg v1.1.5` vips vsn `8.11.2` ``` buffer, _ := bimg.Read(filepath) bytes, err := bimg.NewImage(buffer).Convert(bimg.JPEG) if err != nil...

Go `version 1.17` GCC `version 11.1.0` Vips `version 8.11.3` code sample ``` package main import ( "log" "github.com/h2non/bimg" ) func main() { buffer, err := bimg.Read("/test.gif") if err != nil...

The following error was encountered during the gif resizing process. `Unsupported image output type` code sample ```go import ( "fmt" "github.com/h2non/bimg" "log" ) func foo(width int, height int) { buffer,...