You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a learning effort, I'm creating a JPEG encoder from scratch. It's very valuable for me to be able to use this crate for the file format aspect, so I can concentrate on the core JPEG compression instead. Thanks!
However, I cannot find an API to create a Jpeg instance from scratch, I can only find from_bytes. Would it be valuable to have Jpeg::new() (and should it have any parameters) or Jpeg::from_segments(segments: Vec<JpegSegment>) or something similar?
The text was updated successfully, but these errors were encountered:
As a learning effort, I'm creating a JPEG encoder from scratch. It's very valuable for me to be able to use this crate for the file format aspect, so I can concentrate on the core JPEG compression instead. Thanks!
However, I cannot find an API to create a Jpeg instance from scratch, I can only find
from_bytes
. Would it be valuable to haveJpeg::new()
(and should it have any parameters) orJpeg::from_segments(segments: Vec<JpegSegment>)
or something similar?The text was updated successfully, but these errors were encountered: