summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_utils.h
blob: 706aca469028b3633bd5f2d04e24055ace61675f (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
/***************************************************************************
                          sq_utils.h  -  description
                             -------------------
    begin                : Thu Aug 2 2007
    copyright            : (C) 2007 by Baryshev Dmitry
    email                : ksquirrel.iv@gmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef SQ_UTILS_H
#define SQ_UTILS_H

#include <tqimage.h>
#include <tqwmatrix.h>

class KURL;

class TQString;

class SQ_Thumbnail;

/*
 *  Helper class for SQ_GLWidget and SQ_ThumbnailLoadJob:
 *
 *  thumbnail loader, rotater, mmx scaler
 */

namespace SQ_Utils
{
    enum SmoothAlgorithm { SMOOTH_NONE, SMOOTH_FAST, SMOOTH_NORMAL, SMOOTH_BEST };

    TQImage scale(const TQImage& image, int width, int height,
                SmoothAlgorithm alg, TQ_ScaleMode mode = TQ_ScaleFree, double blur = 1.0);

    /*
     *  Scale given image to fit it within 'fitwithin'
     */
    TQImage scaleImage(unsigned char *im, int w, int h, int fitwithin);

#ifndef KSQUIRREL_PART
    /*
     *  Create and save thumbnail for 'pixPath'
     */
    bool loadThumbnail(const KURL &pixPath, SQ_Thumbnail&);
#endif

    /*
     * determine EXIF rotation and rotate image if needed
     */
    void exifRotate(const TQString &file, TQImage &i, int o = -1);

    TQWMatrix exifGetMatrix(const TQString &file, int o = -1);
};

#endif