-
Couldn't load subscription status.
- Fork 641
graphics/jpgresizetool: Add libjpeg resize tool #3143
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
Conversation
|
Also this tool allows a denom of 16, which is not possible. Should be removed. |
|
Ill get back to this later this week if the tweaks are still required! |
That would be great! |
|
Hi @keever50 , Please add build with CMake |
7537290 to
36c9b21
Compare
|
@simbit18 Hi, I'm not familiar with CMake in NuttX and I'm not sure how to get this to work with my current project, so I cannot test the addition of this. I hope it is okay to leave this out for now. |
Hi @keever50, add |
36c9b21 to
f15e087
Compare
Thanks, done! |
|
Hi @keever50 , could you add some basic documentation? https://nuttx.apache.org/docs/latest/applications/graphics/index.html |
Add a libjpeg based JPEG resize tool. Simple resizer that can resize JPEGs using "jpgresize input.jpg output.jpg scale_denom(1,2,4,8) quality%". Tries to use little memory by scanning per line. Signed-off-by: Kevin Witteveen (MartiniMarter) <[email protected]>
f15e087 to
6799ae6
Compare
Summary
Add a libjpeg based JPEG resize tool.
Simple resizer that can resize JPEGs using
"jpgresize input.jpg output.jpg scale_denom(1,2,4,8) quality%". Tries to use little memory by scanning per line.
Impact
Allows users to quickly resize JPEG images using a simple command. Useful for in scripts to generate thumbnails or experiment with jpeg compression and size ratios.
Testing
This app is tested during the development of a project where thumbnails are generated from photos.

