00001 // $Id: pngfiltr.h 809 2006-04-13 11:28:42Z phil $ 00002 /* @@tag:xara-cn@@ DO NOT MODIFY THIS LINE 00003 ================================XARAHEADERSTART=========================== 00004 00005 Xara LX, a vector drawing and manipulation program. 00006 Copyright (C) 1993-2006 Xara Group Ltd. 00007 Copyright on certain contributions may be held in joint with their 00008 respective authors. See AUTHORS file for details. 00009 00010 LICENSE TO USE AND MODIFY SOFTWARE 00011 ---------------------------------- 00012 00013 This file is part of Xara LX. 00014 00015 Xara LX is free software; you can redistribute it and/or modify it 00016 under the terms of the GNU General Public License version 2 as published 00017 by the Free Software Foundation. 00018 00019 Xara LX and its component source files are distributed in the hope 00020 that it will be useful, but WITHOUT ANY WARRANTY; without even the 00021 implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00022 See the GNU General Public License for more details. 00023 00024 You should have received a copy of the GNU General Public License along 00025 with Xara LX (see the file GPL in the root directory of the 00026 distribution); if not, write to the Free Software Foundation, Inc., 51 00027 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00028 00029 00030 ADDITIONAL RIGHTS 00031 ----------------- 00032 00033 Conditional upon your continuing compliance with the GNU General Public 00034 License described above, Xara Group Ltd grants to you certain additional 00035 rights. 00036 00037 The additional rights are to use, modify, and distribute the software 00038 together with the wxWidgets library, the wxXtra library, and the "CDraw" 00039 library and any other such library that any version of Xara LX relased 00040 by Xara Group Ltd requires in order to compile and execute, including 00041 the static linking of that library to XaraLX. In the case of the 00042 "CDraw" library, you may satisfy obligation under the GNU General Public 00043 License to provide source code by providing a binary copy of the library 00044 concerned and a copy of the license accompanying it. 00045 00046 Nothing in this section restricts any of the rights you have under 00047 the GNU General Public License. 00048 00049 00050 SCOPE OF LICENSE 00051 ---------------- 00052 00053 This license applies to this program (XaraLX) and its constituent source 00054 files only, and does not necessarily apply to other Xara products which may 00055 in part share the same code base, and are subject to their own licensing 00056 terms. 00057 00058 This license does not apply to files in the wxXtra directory, which 00059 are built into a separate library, and are subject to the wxWindows 00060 license contained within that directory in the file "WXXTRA-LICENSE". 00061 00062 This license does not apply to the binary libraries (if any) within 00063 the "libs" directory, which are subject to a separate license contained 00064 within that directory in the file "LIBS-LICENSE". 00065 00066 00067 ARRANGEMENTS FOR CONTRIBUTION OF MODIFICATIONS 00068 ---------------------------------------------- 00069 00070 Subject to the terms of the GNU Public License (see above), you are 00071 free to do whatever you like with your modifications. However, you may 00072 (at your option) wish contribute them to Xara's source tree. You can 00073 find details of how to do this at: 00074 http://www.xaraxtreme.org/developers/ 00075 00076 Prior to contributing your modifications, you will need to complete our 00077 contributor agreement. This can be found at: 00078 http://www.xaraxtreme.org/developers/contribute/ 00079 00080 Please note that Xara will not accept modifications which modify any of 00081 the text between the start and end of this header (marked 00082 XARAHEADERSTART and XARAHEADEREND). 00083 00084 00085 MARKS 00086 ----- 00087 00088 Xara, Xara LX, Xara X, Xara X/Xtreme, Xara Xtreme, the Xtreme and Xara 00089 designs are registered or unregistered trademarks, design-marks, and/or 00090 service marks of Xara Group Ltd. All rights in these marks are reserved. 00091 00092 00093 Xara Group Ltd, Gaddesden Place, Hemel Hempstead, HP2 6EX, UK. 00094 http://www.xara.com/ 00095 00096 =================================XARAHEADEREND============================ 00097 */ 00098 // 00099 00100 #ifndef INC_PNGFILTR 00101 #define INC_PNGFILTR 00102 00103 #include "maskfilt.h" 00104 #include "outptpng.h" 00105 #include "bmpprefs.h" // SelectionType 00106 //#include "filtrres.h" 00107 00108 class KernelBitmap; 00109 00110 /******************************************************************************************** 00111 00112 > class PNGExportOptions : public MaskedFilterExportOptions 00113 00114 Author: Colin_Barfoot (Xara Group Ltd) <camelotdev@xara.com> 00115 Created: 30/10/96 00116 Purpose: Base class for storing information about the bitmap we're exporting. 00117 00118 ********************************************************************************************/ 00119 00120 class PNGExportOptions : public MaskedFilterExportOptions 00121 { 00122 CC_DECLARE_DYNCREATE(PNGExportOptions) 00123 00124 public: 00125 static BOOL Declare(); 00126 00127 PNGExportOptions(const FilterType FilterID, const StringBase* pFilterName); 00128 PNGExportOptions() {}; 00129 00130 virtual BOOL GetSupportsImageMap() { return TRUE; } 00131 00132 virtual BOOL RetrieveDefaults(); 00133 virtual BOOL SetAsDefaults() const; 00134 00135 virtual UINT32 GetFilterNameStrID() { return _R(IDS_FILTERNAME_PNG);} 00136 00137 00138 00139 protected: 00140 static UINT32 g_CompactedFlagsForDefaults; 00141 }; 00142 00143 /******************************************************************************************** 00144 00145 > class PNGFilter : public MaskedFilter 00146 00147 Author: Neville_Humphrys (Xara Group Ltd) <camelotdev@xara.com> 00148 Created: 26/4/96 00149 Purpose: Encapsulates a PNG export filter. 00150 Derives off the masked filter which provides funcitonality for doing masked 00151 bitmap export and import. 00152 00153 ********************************************************************************************/ 00154 00155 class PNGFilter : public MaskedFilter 00156 { 00157 CC_DECLARE_DYNAMIC(PNGFilter); 00158 00159 public: 00160 00161 PNGFilter(); 00162 BOOL Init(); 00163 00164 virtual INT32 HowCompatible( PathName& Filename, ADDR HeaderStart, UINT32 HeaderSize, 00165 UINT32 FileSize ); 00166 00167 virtual FilterType GetFilterType() const { return PNG; } 00168 00169 // Import related functions 00170 virtual BOOL ReadFromFile(OILBitmap* pOilBitmap); 00171 // This is the function for native/web files to use 00172 virtual BOOL ReadFromFile(OILBitmap* pOilBitmap, BaseCamelotFilter* pFilter, 00173 CCLexFile* pFile, BOOL IsCompressed); 00174 00175 // Function for web/native filters to use to write out the bitmap data to file 00176 virtual BOOL WriteBitmapToFile(KernelBitmap* pKernelBitmap, BaseCamelotFilter* pFilter, 00177 CCLexFile* pFile, INT32 Compression); 00178 00179 // Check if this Bitmap filter can cope with saving at this Bpp/Colour depth 00180 virtual BOOL IsThisBppOk(UINT32 Bpp); 00181 00182 // Public way of finding out how compatable the PNG filter thought the file was 00183 // We might want to bring in the Accusoft filter to help out. 00184 virtual INT32 GetPNGCompatibility() { return PNGHowCompatible; } 00185 00186 // Virtual overrides 00187 virtual UINT32 GetExportMsgID(); 00188 virtual void PostGetExportOptions(BitmapExportOptions* pOptions); 00189 00190 protected: 00191 00192 // Invert the alpha channel. 00193 virtual void InvertAlpha ( LPBITMAPINFO lpBitmapInfo, 00194 LPBYTE lpBits ); 00195 00196 // Get the correct output DIB. 00197 virtual OutputDIB* GetOutputDIB ( void ); 00198 00199 virtual BitmapExportOptions* CreateExportOptions() const; 00200 00201 virtual BOOL GetExportOptions( BitmapExportOptions* pOptions ); 00202 virtual void CleanUpAfterExport(); 00203 virtual BOOL EndWriteToFile(); 00204 00205 virtual BOOL WriteFileHeader(void) { return TRUE; } 00206 virtual BOOL WritePreFrame(void); 00207 virtual BOOL WritePreSecondPass(void); 00208 virtual BOOL WritePostOptimisedPalette(void) { return TRUE; } 00209 virtual BOOL WriteFrame(void); 00210 virtual BOOL WritePostFrame(void); 00211 virtual BOOL WriteFileEnd(void); 00212 00213 virtual BOOL WriteBitmapToFile(KernelBitmap* pKernelBitmap, double Dpi); 00214 00215 // this is used for the actual writing of the file 00216 static BOOL WriteDataToFile( BOOL End, UINT32 Bpp, UINT32 Compression); 00217 static BOOL WriteToFile ( CCLexFile*, LPBITMAPINFO Info, LPBYTE Bits, 00218 String_64* ProgressString = NULL); 00219 00220 // This is the form used for direct saving bitmaps into the native/web file format 00221 static BOOL WriteToFile ( CCLexFile*, LPBITMAPINFO Info, LPBYTE Bits, 00222 BOOL Interlace, INT32 TransparentColour, 00223 BaseCamelotFilter* pFilter = NULL); 00224 00225 void AlterPaletteContents( LPLOGPALETTE pPalette );//ap 00226 00227 #ifdef DO_EXPORT 00228 // The class we use for actually outputting the PNG data and converting from 32 to n bpps 00229 static OutputPNG DestPNG; 00230 #endif 00231 00232 // This is so we can remember what we thought of the GIF file. 00233 INT32 PNGHowCompatible; 00234 00235 static FilterType s_FilterType; // Type of filter in use i.e. PNG 00236 00237 // The string to display when exporting the second stage. 00238 UINT32 Export2ndStageMsgID; 00239 }; 00240 00241 #endif // INC_PNGFILTR 00242 00243