blob: fbdca02b704f4b304ccb6331653e3c26fdf777b6 (
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
|
<%pre>
#include <setup.h>
#include <grab.h>
using namespace vdrlive;
</%pre>
<%args>
int quality = 80;
int width = 569;
int height = 320;
</%args>
<%session scope="global">
bool logged_in(false);
</%session>
<%cpp>
if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
reply.setContentType("image/jpg");
GrabImageInfo image = LiveGrabImageManager().GetImage();
if ( image.second > 0 )
reply.out().write( image.first.get(), image.second );
</%cpp>
|