Grigory Dryapak
Grigory Dryapak
Indeed, the shear operation would be useful in some cases. Contributions are welcome!
Hi, What type is `c` in your example? ``` file, err := c.FormFile("file") ``` The FormFile method of http.Request from standard library returns a `multipart.File` (https://pkg.go.dev/net/http#Request.FormFile). You can pass it...
Hi, The `Resize` function returns the new (resized) image. Try changing the second line this way: ``` src2 = imaging.Resize(src2, 320, 120, imaging.Lanczos) ```
Thank you! Fixed it. - `Fit` preserves the aspect ratio of the original image. It resizes the image only if its size is larger than the given bounding box, i.e....
I agree. It would be helpfull if there were more usage examples in the documentation. I will look into it. As for the error message, the "golang.org/x/image/bmp" package is not...
Hi, Sure! I think it would be a good fit for this package.
Indeed, it may be useful sometimes to control the radius parameter separately from the sigma, but this requires changing the signature of the function. This would break other people's code.
Hi, My original intent was to start with the basic functionality and to add more features later if needed. The support of categories is definitely the feature that would be...