Brendan Duncan

Results 398 comments of Brendan Duncan
trafficstars

I didn't try your example yet, but I did find a way to call drawImage and get the index error. ``` final dst = Image(4608, 3456); fill(dst, getColor(0, 255, 0));...

Turns out I was doing range checking in that case, I just had a typo. It's been fixed. I'll publish the new version soon, but was working on a couple...

Without more specifics, like an actual test I can run and see fail, any fixes would be purely speculative. If you can send me a repo example, then I'd be...

By the "size of the image", do you mean the size of an encoded jpeg after resizing it? If so, then the compression level would be responsible for that, not...

What compression level was the original jpeg saved with? 100%? With a different compression program? Jpeg is a weird format and doesn't explicitly standardize how an image is compressed, so...

Jpeg is lossy, every time you decode it and re-encode it, you lose info, and it will never re-encode the same. Also, two compressors newly encoding a raw image, with...

How did 2 weeks pass since I looked at this repo? I think the only thing keeping you from decoding a specific tile on demand is the TiffImage _decodeTile method...

Unfortunately there isn't a good way of knowing how much of the file is needed for the header info, since it's variable based on the number and type of tags...

For IO based platforms, like server and mobile apps, a file streaming interface would be ideal. But work's going full steam again, I'm not getting much of a chance to...

Unfortunately you didn't miss anything, the animation functionality isn't great. Certainly something that should probably be added, but it's unlikely I'll be able to get to it any time soon....