1
/****************************************************************************
2
**
3
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4
** All rights reserved.
5
** Contact: Nokia Corporation (qt-info@nokia.com)
6
**
7
** This file is part of the examples of the Qt Toolkit.
8
**
9
** $QT_BEGIN_LICENSE:BSD$
10
** You may use this file under the terms of the BSD license as follows:
11
**
12
** "Redistribution and use in source and binary forms, with or without
13
** modification, are permitted provided that the following conditions are
14
** met:
15
**   * Redistributions of source code must retain the above copyright
16
**     notice, this list of conditions and the following disclaimer.
17
**   * Redistributions in binary form must reproduce the above copyright
18
**     notice, this list of conditions and the following disclaimer in
19
**     the documentation and/or other materials provided with the
20
**     distribution.
21
**   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22
**     the names of its contributors may be used to endorse or promote
23
**     products derived from this software without specific prior written
24
**     permission.
25
**
26
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37
** $QT_END_LICENSE$
38
**
39
****************************************************************************/
40
41
#include "framecapture.h"
42
43
#include <iostream>
44
#include <QtWebKit>
45
46
FrameCapture::FrameCapture(): QObject(), m_percent(0)
47
{
48
    connect(&m_page, SIGNAL(loadProgress(int)), this, SLOT(printProgress(int)));
49
    connect(&m_page, SIGNAL(loadFinished(bool)), this, SLOT(saveResult(bool)));
50
}
51
52
void FrameCapture::load(const QUrl &url, const QString &outputFileName)
53
{
54
    std::cout << "Loading " << qPrintable(url.toString()) << std::endl;
55
    m_percent = 0;
56
    int index = outputFileName.lastIndexOf('.');
57
    m_fileName = (index == -1) ? outputFileName + ".png" : outputFileName;
58
    m_page.mainFrame()->load(url);
59
    m_page.mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff);
60
    m_page.mainFrame()->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff);
61
    m_page.setViewportSize(QSize(1024, 768));
62
}
63
64
void FrameCapture::printProgress(int percent)
65
{
66
    if (m_percent >= percent)
67
        return;
68
69
    while (m_percent++ < percent)
70
        std::cout << "#" << std::flush;
71
}
72
73
void FrameCapture::saveResult(bool ok)
74
{
75
    std::cout << std::endl;
76
77
    // crude error-checking
78
    if (!ok) {
79
        std::cerr << "Failed loading " << qPrintable(m_page.mainFrame()->url().toString()) << std::endl;
80
        emit finished();
81
        return;
82
    }
83
84
    // save each frame in different image files
85
    saveFrame(m_page.mainFrame());
86
87
    emit finished();
88
}
89
90
void FrameCapture::saveFrame(QWebFrame *frame)
91
{
92
    static int frameCounter = 0;
93
94
    QString fileName(m_fileName);
95
    if (frameCounter) {
96
        int index = m_fileName.lastIndexOf('.');
97
        fileName = fileName.insert(index, "_frame" + QString::number(frameCounter));
98
    }
99
100
    QImage image(frame->contentsSize(), QImage::Format_ARGB32_Premultiplied);
101
    image.fill(Qt::transparent);
102
103
    QPainter painter(&image);
104
    painter.setRenderHint(QPainter::Antialiasing, true);
105
    painter.setRenderHint(QPainter::TextAntialiasing, true);
106
    painter.setRenderHint(QPainter::SmoothPixmapTransform, true);
107
    frame->documentElement().render(&painter);
108
    painter.end();
109
110
    image.save(fileName);
111
112
    ++frameCounter;
113
    foreach(QWebFrame *childFrame, frame->childFrames())
114
        saveFrame(childFrame);
115
}