Replies: 1 comment
-
I'm not sure that there's one single best option. For loading, you can implement |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What is the best approach to integrate the image crate with an external codec? I'm looking for specifically what intermediate steps to do to efficiently and safely load an image into a say
DynamicImage
type, as well as saving aDynamicImage
type as the target format.The high-level API seems to be hardcoded to only use the built-in codecs via an enum and not taking a codec that implements the
ImageDecoder
/ImageEncoder
trait so that's off the table.Beta Was this translation helpful? Give feedback.
All reactions