Brendan Duncan

Results 398 comments of Brendan Duncan
trafficstars

The function will have to be updated to be more flexible for the vignette fade-out color/alpha. I won't have time to look into it for the next couple of weeks.

Hi, I won't be able to work on this myself. I had briefly looked into it before but came to the conclusion that I can't manage the time to do...

Sure, can't argue against that. I'll try and find some time for it.

Thanks. Do you happen to have a fbx with this data in it so I can make sure it's correct?

That's great, I'll add those fixes and make sure those fbx files work. I did add a couple fixes last night to get an fbx file exported out of blender...

Can you include a repo xz?

My first guess would be different compression level settings. You can set the compression level when encoding the image to reduce the compressed size at the cost of quality or...

image.getBytes().length is the uncompressed image size. file.toUint8List().length() is the compressed size. Use encodePng or encodeJpg to re-compressed the decompressed image back to a Png or Jpeg. The re-compressed size isn't...

No, there is no guarantee the output size will be the same as the input size. If the original file is a JPEG, and you're saving to a JPEG, then...

Without using the io library at all, you could create an Archive object, add ArchiveFiles to it, encode it with the ZipEncoder and send the resulting bytes. Something like: ```...