mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
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) <kevinwit1999@gmail.com>
11 lines
253 B
Text
11 lines
253 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config GRAPHICS_JPGRESIZETOOL
|
|
bool "JPGResizeTool"
|
|
default n
|
|
depends on libjpeg
|
|
---help---
|
|
Libjpeg JPEG resizer
|