Skip to content

Latest commit

 

History

History
43 lines (39 loc) · 1.73 KB

imageoperation.h

File metadata and controls

43 lines (39 loc) · 1.73 KB
 
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
/****************************************************************************************
**
** Copyright (C) 2013 Jolla Ltd.
** Contact: Marko Mattila <marko.mattila@jollamobile.com>
** All rights reserved.
**
** This file is part of Nemo Transfer Engine package.
**
** You may use this file under the terms of the GNU Lesser General
** Public License version 2.1 as published by the Free Software Foundation
** and appearing in the file license.lgpl included in the packaging
** of this file.
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file license.lgpl included in the packaging
** of this file.
**
** This library is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
** Lesser General Public License for more details.
**
****************************************************************************************/
#ifndef IMAGEOPERATION_H
#define IMAGEOPERATION_H
#include <QString>
#include <QDir>
class ImageOperation
{
public:
static QString uniqueFilePath(const QString &sourceFilePath, const QString &path = QDir::tempPath());
static QString removeImageMetadata(const QString &sourceFile);
static QString scaleImage(const QString &sourceFile, qreal scaleFactor, const QString &targetFile=QString());
May 24, 2013
May 24, 2013
39
static QString scaleImageToSize(const QString &sourceFile, quint64 targetSize, const QString &targetFile=QString());
Nov 20, 2013
Nov 20, 2013
40
static void imageOrientation(const QString &sourceFile, int *angle, bool *mirror);
41
42
43
};
#endif // IMAGEOPERATION_H