Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPinned
1,922 contributions in the last year
Contribution activity
November 2020
Created 84 commits in 10 repositories
Created 2 repositories
Created a pull request in rust-lang/rust that received 8 comments
Avoid reversal in post-order iteration of dominators
While previously the post-order list of dominators would get explicitly reversed into reverse-post-order (rpo), we can avoid that extra operation b…
Opened 11 other pull requests in 6 repositories
image-rs/image-png
4
merged
image-rs/image
2
merged
image-rs/lzw
2
merged
RustSec/advisory-db
1
merged
HeroicKatora/static-alloc
1
merged
oberien/heradoc
1
merged
Reviewed 12 pull requests in 4 repositories
image-rs/image 9 pull requests
- Add write_image_with_speed_quality function.
- Fixes #1109. Adds a default 1 when resizing dims.
- Fix warnings in reference_images tests and unignore them
- Add back png::{CompressionType, FilterType} to fix regression
- Fixes #983. blur 0.0 panic
- Add `ImageFormat::from_extension`
- add public resize_to_fit and resize_to_fill utility functions
- Move the dynimage::resize_dimensions function to math::utils
- Add copyless DynamicImage to byte slice/vec conversion
image-rs/image-png 1 pull request
image-rs/image-tiff 1 pull request
image-rs/image-gif 1 pull request
Created an issue in image-rs/image that received 8 comments
An improved `ImageOutputFormat` design
Another solution that comes to mind for the next version could be something like this: pub enum ImageOutputFormat { Png(PngEncoderOptions), Jpeg(Jp…