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

FXBMPImage.h
1 /********************************************************************************
2 * *
3 * B M P I m a g e O b j e c t *
4 * *
5 *********************************************************************************
6 * Copyright (C) 1998,2023 by Jeroen van der Zijp. 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 FXBMPIMAGE_H
22 #define FXBMPIMAGE_H
23 
24 #ifndef FXIMAGE_H
25 #include "FXImage.h"
26 #endif
27 
28 namespace FX {
29 
30 
39 class FXAPI FXBMPImage : public FXImage {
40  FXDECLARE(FXBMPImage)
41 protected:
42  FXBMPImage(){}
43 private:
44  FXBMPImage(const FXBMPImage&);
45  FXBMPImage &operator=(const FXBMPImage&);
46 public:
47  static const FXchar fileExt[];
48  static const FXchar mimeType[];
49 public:
50 
52  FXBMPImage(FXApp* a,const FXuchar *pix=nullptr,FXuint opts=0,FXint w=1,FXint h=1);
53 
55  virtual FXbool savePixels(FXStream& store) const;
56 
58  virtual FXbool loadPixels(FXStream& store);
59 
61  virtual ~FXBMPImage();
62  };
63 
64 
65 #ifndef FXLOADBMP
66 #define FXLOADBMP
67 
71 extern FXAPI FXbool fxcheckBMP(FXStream& store);
72 
78 extern FXAPI FXbool fxloadBMP(FXStream& store,FXColor*& data,FXint& width,FXint& height);
79 
83 extern FXAPI FXbool fxsaveBMP(FXStream& store,const FXColor *data,FXint width,FXint height);
84 
90 extern FXAPI FXbool fxloadDIB(FXStream& store,FXColor*& data,FXint& width,FXint& height);
91 
95 extern FXAPI FXbool fxsaveDIB(FXStream& store,const FXColor *data,FXint width,FXint height);
96 
97 #endif
98 
99 }
100 
101 #endif
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
The BMP Image class is a convenience class for working with images in the Microsoft Bitmap (...
Definition: FXBMPImage.h:39
Definition: FX4Splitter.h:28
An Image is a rectangular array of pixels.
Definition: FXImage.h:67

Copyright © 1997-2022 Jeroen van der Zijp