imaging icon indicating copy to clipboard operation
imaging copied to clipboard

Imaging is a simple image processing package for Go

Results 33 imaging issues
Sort by recently updated
recently updated
newest added

Please address the security bug identified by Snyk: https://security.snyk.io/vuln/SNYK-GOLANG-GITHUBCOMDISINTEGRATIONIMAGING-5880692 On a related note, GitHub dependabot claims that updating the transient dependency golang.org/x/image to v0.10.0 or higher is sufficient. However, Snyk...

Bumps [golang.org/x/image](https://github.com/golang/image) from 0.0.0-20191009234506-e7c1f5e7dbb8 to 0.5.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/image&package-manager=go_modules&previous-version=0.0.0-20191009234506-e7c1f5e7dbb8&new-version=0.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

When we use the imaging library to parse a maliciously constructed graph, the `scan` function of the `scanner.go` file will have an index out of bounds problem. The verification procedure...

## Description I am trying to rotate an image and pasting it over other one. I wanted that the background of the area under rotated image to be "transparent" and...

I am learning how to use the imaging package but have run into the following runtime error: ``` panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV:...

I've made some changes to the io.go file to export the FixOrientation function and the orientation* constants, as requested in issue #160. This change makes it possible to use the...

Channels should usually have a size of one or be unbuffered. It prevents the channel from filling up under load. Refer https://github.com/uber-go/guide/blob/master/style.md#channel-size-is-one-or-none for more details.

Please export `fixOrientation` function, it think it is an useful method in other applications. And these constants as well: orientationUnspecified = 0 orientationNormal = 1 orientationFlipH = 2 orientationRotate180 =...

The following code ``` package main import ( "image" "github.com/disintegration/imaging" ) func Test() { yStride := 288 cStride := 144 width := 288 height := 147 im := &image.YCbCr{ Y:...

Thanks for this package! It's really nice. Except that it doesn't seem to extract `.heic` EXIF data, so it can't get the Orientation. This is unfortunate for all iPhone users...