-
Notifications
You must be signed in to change notification settings - Fork 57
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
more examples #31
Comments
See imagepipe and chimper for practical uses of the library: https://github.com/pedrocr/imagepipe/ |
Does this library have any support for conversion operations? Such as CR2 -> JPG? |
@aaronleopold This just uses the default values for the operations. Documenting imagepipe a bit more would be a good first issue. I'll put that in that project. |
@pedrocr Thank you so much for the detailed reply!! I'll look at the linked file for reference! |
More than welcome. If you want to discuss anything live I have IRC always running on #chimper irc.freenode.net. I may not always be available but I'll eventually reply, and check it often. |
It is possible to use this library to extend extension number supported by |
@qarmin see my comment above with the link to imagepipe. That converter example uses the image crate and so does chimper. |
Well, if I read this correctly, then decoded image from rawloader is not used in any other place, so still I don't know how to use this
For now I wrote this code, but I don't know how to convert vec_16 or vec_32 to &[u8] needed by |
That part is only used to print out some metadata. The actual decode and conversion is just this call: It gives you an 8bit output directly no matter what the internal pipeline needed to do to achieve that. That can then be used with the image crate: That's the simplest API. If you want to change settings then you need to actually setup a pipeline: and then you can alter the conversion settings of the pipeline, by writing to |
Hi,
So glad you made this library, thank you!
Can you please add more examples, besides ppm? Maybe also a link to a good learning resource.
The text was updated successfully, but these errors were encountered: