summaryrefslogtreecommitdiffstats
path: root/rules/imagemagick.in
blob: af49e71e2f084db1c34398e49a689c6c7ee1eddb (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
## SECTION=multimedia_tools

menuconfig IMAGEMAGICK
	tristate
	select ZLIB	if IMAGEMAGICK_USE_ZLIB
	select LIBPNG	if IMAGEMAGICK_USE_LIBPNG
	select LIBJPEG	if IMAGEMAGICK_USE_LIBJPEG
	select LIBWEBP	if IMAGEMAGICK_USE_LIBWEBP
	prompt "imagemagick                   "
	help
	  ImageMagick® is a software suite to create, edit, compose, or convert
	  bitmap images. It can read and write images in a variety of formats
	  (over 200) including PNG, JPEG, JPEG-2000, GIF, TIFF, DPX, EXR, WebP,
	  Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror,
	  rotate, distort, shear and transform images, adjust image colors, apply
	  various special effects, or draw text, lines, polygons, ellipses and
	  Bézier curves.

if IMAGEMAGICK

config IMAGEMAGICK_USE_ZLIB
	bool
	default y
	prompt "Enable ZLIB"
	help
	  Enable ZLIB support

config IMAGEMAGICK_USE_LIBPNG
	bool
	default y
	prompt "Enable PNG"
	help
	  Enable PNG support

config IMAGEMAGICK_USE_LIBJPEG
	bool
	default y
	prompt "Enable JPEG"
	help
	  Enable JPEG support

config IMAGEMAGICK_USE_LIBWEBP
	bool
	default y
	prompt "Enable WEBP"
	help
	  Enable WEBP support

endif