summaryrefslogtreecommitdiff
path: root/noncore/multimedia/camera/cmd/capture.cpp
blob: 7960bbb1af48b046bd93cbb2d59a40d730782f8e (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**********************************************************************
** Copyright (C) 2003 Michael 'Mickey' Lauer.  All rights reserved.
**
** This file is part of Opie Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
**********************************************************************/

#include "zcameraio.h"
#include "imageio.h"
#include "avi.h"

#include <qfile.h>
#include <qimage.h>
#include <opie2/oapplication.h>

#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <stdio.h>

#define CAPTUREFILE "/tmp/capture.dat"
#define OUTPUTFILE  "/tmp/output.avi"

int captureX = 240;
int captureY = 320;
int quality = 75;
QString flip = "A";
int zoom = 1;
QString format = "JPG";
QString name;

int performCapture();

void usage()
{
    printf( "Usage: ./capture [options] filename\n\n" );
    printf( "  -x xresolution (dividable by 16) [default=240]\n" );
    printf( "  -y xresolution (dividable by 16) [default=320]\n" );
    printf( "  -q quality (10-100) [default=75]\n" );
    printf( "  -f flip (A=auto, X, Y, *=both) [default=Auto]\n" );
    printf( "  -o output format (JPG,BMP,PNG) [default=JPG]\n" );
    printf( "  -z zoom (1-2) [default=1]\n" );
}

int main( int argc, char** argv )
{
    OApplication* a = new OApplication( argc, argv, "opie-camera" );

    if ( argc < 2 )
    {
        usage();
        return -1;
    }

    int captureX = 240;
    int captureY = 320;
    QString flip = "A";

    #define I_HATE_WRITING_HARDCODED_PARSES

    int i = 1;
    while ( i < argc )
    {
        // check for filename
        if ( argv[i][0] != '-' )
        {
            if ( argc != i+1 )
            {
                usage();
                return -1;
            }
            else
            {
                name = argv[i];
                break;
            }
        }
        else
        {
            i++;
            if ( argc == i )
            {
                usage();
                return -1;
            }
            switch ( argv[i-1][1] )
            {
                case 'x': captureX = QString( argv[i] ).toInt(); break;
                case 'y': captureY = QString( argv[i] ).toInt(); break;
                case 'z': zoom = QString( argv[i] ).toInt(); break;
                case 'o': format = QString( argv[i] ); break;
                case 'q': quality = QString( argv[i] ).toInt(); break;
                case 'f': flip = QString( argv[i] )[0]; break;
                default: usage(); return -1;
            }
            i++;
        }

    #undef I_HATE_WRITING_HARDCODED_PARSES
    }

    if ( !ZCameraIO::instance()->isOpen() )
    {
        printf( "Error: Can't detect your camera. Exiting.\n" );
        return -1;
    }
    return performCapture();
}


int performCapture()
{
   printf( "Capturing %dx%d Image [%s] q%d z%d --> %s\n", captureX,
                                                          captureY,
                                                          (const char*) format,
                                                          quality,
                                                          zoom,
                                                          (const char*) name );

    QImage i;
    ZCameraIO::instance()->captureFrame( captureX, captureY, zoom, &i );
    QImage im = i.convertDepth( 32 );
    bool result = im.save( name, format, quality );
    if ( !result )
    {
        printf( "QImageio-Problem while writing.\n" );
        return -1;
    }
    else
    {
        printf( "Ok.\n" );
    }
}