Brendan Duncan

Results 398 comments of Brendan Duncan
trafficstars

I added a antialias named arg to the crop functions, default to true. I suspect the pixels are getting darker because I did the math wrong, which sounds like something...

I had started adding an FXAA filter, I'll get that finished. I think the remaining dark border is from my composite function alpha blending function. I'll get that fixed up...

I had some thoughts about compositing and darkened alpha blending while I was trying to sleep last night, and both threads of thought look promising. 1) The test I put...

I added a `bool linearBlend = false` named arg to the compositeImage function, to apply the composite in linear color space instead of sRGB color space. Its false by default...

The image is a paletted image, so the interpolation modes aren't correct for that. It would have to be converted to an 32-bit RGBA image first, via `final rgbaImage =...

I pushed the update to github, to auto convert images for transform functions that use non-nearest interpolation. I'll be doing a publish soon. If you want to convert it back...

Most likely it's because in v3 all images are RGBA 32-bit, and in v4 it supports a lot of different image formats. Your blobs output probably assumes the old RGBA...

Looks like it was changed a little while ago,. I'll close this issue.

Sorry I never replied to this. I didn't take it before because I need to be very careful with adding new dependencies. The library is used in places that is...

I'll look into adding better error exceptions.