summaryrefslogtreecommitdiff
path: root/apps/graphics/screenshot/Kconfig
blob: 642e7576856b2a0126370188672d0688c96632b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config GRAPHICS_SCREENSHOT
	bool "TIFF screenshot utility"
	default n
	depends on TIFF && NX
	---help---
		Generate a NX screenshot utility based on the TIFF library.

if GRAPHICS_SCREENSHOT

config SCREENSHOT_WIDTH
	int "Screenshot width (in pixels)"
	default 320
	---help---
		The width of the screenshot in pixels/columns.

config SCREENSHOT_HEIGHT
	int "Screenshot height (in lines)"
	default 240
	---help---
		The height of the screenshot in pixels/rows.

config SCREENSHOT_FORMAT
	int "Screenshot color format"
	default 9
	---help---
		See inlcude/nuttx/video/fb.h for a list of color formats.  The default
		value of 9 corresponds to FB_FMT_RGB16_565

endif