Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

FXTIFImage.h
1 /********************************************************************************
2 * *
3 * T I F F I m a g e O b j e c t *
4 * *
5 *********************************************************************************
6 * Copyright (C) 2001,2023 Eric Gillet. All Rights Reserved. *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU Lesser General Public License as published by *
10 * the Free Software Foundation; either version 3 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU Lesser General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU Lesser General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/> *
20 ********************************************************************************/
21 #ifndef FXTIFIMAGE_H
22 #define FXTIFIMAGE_H
23 
24 #ifndef FXIMAGE_H
25 #include "FXImage.h"
26 #endif
27 
28 namespace FX {
29 
30 
32 class FXAPI FXTIFImage : public FXImage {
33  FXDECLARE(FXTIFImage)
34 protected:
35  FXushort codec;
36 protected:
37  FXTIFImage(){}
38 private:
39  FXTIFImage(const FXTIFImage&);
40  FXTIFImage &operator=(const FXTIFImage&);
41 public:
42  static const FXchar fileExt[];
43  static const FXchar mimeType[];
44 public:
45 
47  FXTIFImage(FXApp *a,const FXuchar *pix=nullptr,FXuint opts=0,FXint w=1,FXint h=1);
48 
50  static const FXbool supported;
51 
53  void setCodec(FXushort c){ codec=c; }
54 
56  FXushort getCodec() const { return codec; }
57 
59  virtual FXbool loadPixels(FXStream& store);
60 
62  virtual FXbool savePixels(FXStream& store) const;
63 
65  virtual ~FXTIFImage();
66  };
67 
68 
69 #ifndef FXLOADTIF
70 #define FXLOADTIF
71 
75 extern FXAPI FXbool fxcheckTIF(FXStream& store);
76 
77 
83 extern FXAPI FXbool fxloadTIF(FXStream& store,FXColor*& data,FXint& width,FXint& height,FXushort& codec);
84 
85 
89 extern FXAPI FXbool fxsaveTIF(FXStream& store,const FXColor* data,FXint width,FXint height,FXushort codec);
90 
91 #endif
92 
93 }
94 
95 #endif
static const FXbool supported
True if format is supported.
Definition: FXTIFImage.h:50
The Application object is the central point of a FOX user-interface.
Definition: FXApp.h:134
A stream is a way to serialize data and objects into a byte stream.
Definition: FXStream.h:81
void setCodec(FXushort c)
Set codec to save with.
Definition: FXTIFImage.h:53
TIFF Image class.
Definition: FXTIFImage.h:32
FXushort getCodec() const
Get codec setting.
Definition: FXTIFImage.h:56
Definition: FX4Splitter.h:28
An Image is a rectangular array of pixels.
Definition: FXImage.h:67

Copyright © 1997-2022 Jeroen van der Zijp