1SHUTTER(1) User Contributed Perl Documentation SHUTTER(1)
2
3
4
6 Shutter - Feature-rich Screenshot Tool
7
9 shutter [options]
10
12 Shutter is Copyright (C) by Mario Kemper and Shutter Team
13
15 Shutter is a feature-rich screenshot program. You can take a screenshot
16 of a specific area, window, your whole screen, or even of a website -
17 apply different effects to it, draw on it to highlight points, and then
18 upload to an image hosting site, all within one window.
19
21 Example 1
22 shutter -a -p=myprofile --min_at_startup
23
24 Example 2
25 shutter -s=100,100,300,300 -e
26
27 Example 3
28 shutter --window=.*firefox.*
29
30 Example 4
31 shutter --web=http://shutter-project.org/ -e
32
33 CAPTURE MODE OPTIONS
34 -s, --select=[X,Y,WIDTH,HEIGHT]
35 Capture an area of the screen. Providing X,Y,WIDTH,HEIGHT is
36 optional.
37
38 -f, --full
39 Capture the entire screen.
40
41 -w, --window=[NAME_PATTERN]
42 Select a window to capture. Providing a NAME_PATTERN (Perl-
43 style regex) ist optional.
44
45 -a, --active
46 Capture the current active window.
47
48 --section
49 Capture a section. You will be able to select any child window
50 by moving the mouse over it.
51
52 -m, --menu
53 Capture a menu.
54
55 -t, --tooltip
56 Capture a tooltip.
57
58 --web=[URL]
59 Capture a webpage. Providing an URL ist optional.
60
61 -r, --redo
62 Redo last screenshot.
63
64 SETTINGS OPTIONS
65 -p, --profile=NAME
66 Load a specific profile on startup.
67
68 -o, --output=FILENAME
69 Specify a filename to save the screenshot to (overwrites any
70 profile-related setting).
71
72 Supported image formats: You can save to any popular image
73 format (e.g. jpeg, png, gif, bmp). Additionally it is possible
74 to save to pdf, ps or svg.
75
76 Please note: There are several wildcards available, like
77
78 %Y = year
79 %m = month
80 %d = day
81 %T = time
82 $w = width
83 $h = height
84 $name = multi-purpose (e.g. window title)
85 $nb_name = like $name but without blanks in resulting strings
86 $profile = name of current profile
87 $R = random char (e.g. $RRRR = ag4r)
88 %NN = counter
89
90 The string is interpretted by strftime. See "man strftime" for
91 more examples.
92
93 As an example: shutter -f -e -o './%y-%m-%d_$w_$h.png' would
94 create a file named '11-10-28_1280_800.png' in the current
95 directory.
96
97 -d, --delay=SECONDS
98 Wait n seconds before taking a screenshot.
99
100 -c, --include_cursor
101 Include cursor when taking a screenshot.
102
103 -C, --remove_cursor
104 Remove cursor when taking a screenshot.
105
106 APPLICATION OPTIONS
107 -h, --help
108 Prints a brief help message and exits.
109
110 -v, --version
111 Prints version information.
112
113 --debug Prints a lot of debugging information to STDOUT.
114
115 --clear_cache
116 Clears cache, e.g. installed plugins, at startup.
117
118 --min_at_startup
119 Starts Shutter minimized to tray.
120
121 --disable_systray
122 Disables systray icon.
123
124 -e, --exit_after_capture
125 Exit after the first capture has been made. This is useful when
126 using Shutter in scripts.
127
128 -n, --no_session
129 Do not add the screenshot to the session. This is useful when
130 using Shutter in scripts.
131
133 If you find a bug in Shutter, you should report it. But first, you
134 should make sure that it really is a bug, and that it appears in the
135 latest version of Shutter.
136
137 The latest version is always available from:
138 https://launchpad.net/shutter
139
140 Once you have determined that a bug actually exists, please report it
141 at launchpad: https://bugs.launchpad.net/shutter/+filebug
142
143
144
145perl v5.14.2 2013-08-25 SHUTTER(1)