summaryrefslogtreecommitdiffstats
path: root/rules/imagemagick.in
blob: 7bf7b9b99b0bdbe34cd736371c2bbc5d73b68f27 (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
## SECTION=multimedia_tools

menuconfig IMAGEMAGICK
	tristate
	select ZLIB 	if IMAGEMAGICK_USE_ZLIB
	select LIBPNG 	if IMAGEMAGICK_USE_LIBPNG
	select LIBJPEG 	if IMAGEMAGICK_USE_LIBJPEG
	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
	  
endif