Newer
Older
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
function IM = captureScreen (view)
%KML.CAPTURESCREEN(view) Capture a screenshot, and return an cell with the image of each monitor.
%
% Copyright 2012 Rafael Fernandes de Oliveira (rafael@rafael.aero)
% $Revision: 2.3 $ $Date: 2012/09/05 08:00:00 $
if nargin ==0
view = false;
end
ge = java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment();
gd = ge.getScreenDevices;
robot = java.awt.Robot;
for i = 1:numel(gd)
bounds = gd(i).getDefaultConfiguration.getBounds;
width = bounds.getWidth();
height = bounds.getHeight();
left = bounds.getX;
top = bounds.getY;
im = zeros(height,width,3,'uint8');
bimg = robot.createScreenCapture(java.awt.Rectangle(left, top, width, height));
RGBA = bimg.getRGB(0,0,width,height,[],0,width);
RGBA = typecast(RGBA, 'uint8');
im(:,:,1) = reshape(RGBA(3:4:end),width,height).';
im(:,:,2) = reshape(RGBA(2:4:end),width,height).';
im(:,:,3) = reshape(RGBA(1:4:end),width,height).';
IM{i} = im;
end
if view
figure;
N = numel(IM);
for i = 1:N
subplot(N,1,i);
image(IM{i});
axis equal tight
end
end
end