-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Constructor to read file from bytes #100
Comments
@suou-ryuu this is a great recommendation. I believe the best overall solution here would be to allow you to pass a Stream as that matches the typical structure. Let us review |
@mitchelsellers Sorry to pester, is there any update on this? |
I will look at addressing this in the coming week |
Brilliant, thank you. |
@mitchelsellers Sorry to bug you again. (I've tried to get the library set up locally (I figured I'd implement it myself and submit a PR) but I'm having compilation issues with CMAKE) |
Currently the only constructor is
new HeifImage(<someFilePath>)
however my use-case is to process an image downloaded via HTTP, so I only have access to the image bytes.Would it be possible to add a constructor to the effect of
new HeifImage(<someByteArray>)
?The text was updated successfully, but these errors were encountered: