1 /*
2     SPDX-FileCopyrightText: 2007 Tobias Koenig <tokoe@kde.org>
3 
4     Based on code written by Bill Janssen 2002
5 
6     SPDX-License-Identifier: GPL-2.0-or-later
7 */
8 
9 #ifndef IMAGE_H
10 #define IMAGE_H
11 
12 #include "unpluck.h"
13 
14 class QImage;
15 
16 bool TranscribePalmImageToJPEG(unsigned char *image_bytes_in, QImage &image);
17 bool TranscribeMultiImageRecord(plkr_Document *doc, QImage &image, unsigned char *bytes);
18 
19 #endif
20