Brian Popow

Results 88 comments of Brian Popow

> @brianpopow I've found an issue 😔 > > I've added an image containing a CMYK profile from #129 and it causes an out-of-range exception in `ClutCalculator.Interpolate` (I've marked where)....

Here are some real world benchmarks of encoding webp run with our benchmark project. Encode Webp: ``` BenchmarkDotNet=v0.13.0, OS=ubuntu 20.04 Unknown processor .NET SDK=6.0.405 [Host] : .NET 6.0.13 (6.0.1322.58009), Arm64...

> > Perhaps @SwapnilGaikwad or somebody else from @ARM-software would be interested in providing ARM optimizations? > > I can check, but we'd have to prioritise this around other things....

> I don't think this issue should be tagged with [WEBP]. I would prioritize Jpeg with ARM optimizations. The code sniped the OP provided was encoding a lossy webp. Maybe...

I have added support for decoding ktx textures along with support for more pixel formats (still its not exhaustive, there are just too many in opengl). @john-h-k could you be...

i know im a little late to this, but i just stumbled on this thread and i wanted to share my findings. As a preprocessing step for barcode detection with...

@maiksonstrife here you go: ``` var barcodeSearcher = new ZXing.ImageSharp.BarcodeReader() { Options = { TryHarder = true, }, AutoRotate = true, TryInverted = true, }; using (var image = Image.Load(fileName))...

We actually support photometric interpretation Separated, see [CmykTests](https://github.com/SixLabors/ImageSharp/blob/b11f4db1e98b014e1f83858d77bb7ec432cf5268/tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderTests.cs#L312). The issue here comes from the combination of JPEG compression and separated. I am not sure how to decode those image, that's...