blob: 5841dc032967118902313e0ee4d59da8a0a4b6d2 (
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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* viewfinder.cpp - qcam - Viewfinder
*/
#include <QImage>
#include <QPixmap>
#include "format_converter.h"
#include "viewfinder.h"
ViewFinder::ViewFinder(QWidget *parent)
: QLabel(parent), format_(0), width_(0), height_(0), image_(nullptr)
{
}
void ViewFinder::display(const unsigned char *raw)
{
converter_.convert(raw, image_->bits());
QPixmap pixmap = QPixmap::fromImage(*image_);
setPixmap(pixmap);
}
int ViewFinder::setFormat(unsigned int format, unsigned int width,
unsigned int height)
{
int ret;
ret = converter_.configure(format, width, height);
if (ret < 0)
return ret;
format_ = format;
width_ = width;
height_ = height;
setFixedSize(width, height);
delete image_;
image_ = new QImage(width, height, QImage::Format_RGB32);
return 0;
}
|