mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
51 lines
2.8 KiB
PHP
51 lines
2.8 KiB
PHP
// The contents of this file are subject to the Mozilla Public License
|
|
// Version 1.1 (the "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
|
|
//
|
|
// Software distributed under the License is distributed on an "AS IS" basis,
|
|
// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
|
|
// specific language governing rights and limitations under the License.
|
|
//
|
|
// The original code is GraphicColor.pas, released November 1, 1999.
|
|
//
|
|
// The initial developer of the original code is Dipl. Ing. Mike Lischke (Pleißa, Germany, www.delphi-gems.com),
|
|
//
|
|
// Portions created by Dipl. Ing. Mike Lischke are Copyright
|
|
// (C) 1999-2003 Dipl. Ing. Mike Lischke. All Rights Reserved.
|
|
//----------------------------------------------------------------------------------------------------------------------
|
|
// This file is part of the image library GraphicEx.
|
|
//
|
|
// In this configuratin file you can determine which parts of the library are to be compiled.
|
|
// This is in particular important for LZW compression code for which Unisys owns a patent.
|
|
// If you want to use LZW decoding then you have to make a deal with Unisys. Don't make me
|
|
// responsible for using the code.
|
|
// Other configuration options include to limit the number of available image formats to
|
|
// save memory, if necessary.
|
|
//
|
|
//----------------------------------------------------------------------------------------------------------------------
|
|
|
|
{.$define UseLZW} // if this is not defined (default) then neither the GIF format nor the
|
|
// LZW compression decoder (e.g. for TIFF LZW compression) is available
|
|
|
|
// Pick your preferred image formats here or leave them all enabled. By disabling
|
|
// certain formats which are not of interest you can save some memory.
|
|
{$define SGIGraphic} // *.bw, *.rgb, *.rgba, *.sgi images are supported
|
|
{$define AutodeskGraphic} // *.cel, *.pic images
|
|
{$define TIFFGraphic} // *.tif, *.tiff images
|
|
{$define TargaGraphic} // *.tga, *.vst, *.icb, *.vda, *.win images
|
|
{$define PCXGraphic} // *.pcx, *.pcc, *.scr images
|
|
{$define PCDGraphic} // *.pcd images
|
|
{$define PortableMapGraphic} // *.ppm, *.pgm, *.pbm images
|
|
{$define CUTGraphic} // *.cut (+ *.pal) images
|
|
{$define GIFGraphic} // *.gif images
|
|
{$define RLAGraphic} // *.rla, *.rpf images
|
|
{$define PhotoshopGraphic} // *.psd, *.pdd images
|
|
{$define PaintshopProGraphic} // *.psp images
|
|
{$define PortableNetworkGraphic} // *.png images
|
|
{$define EPSGraphic} // *.eps images
|
|
|
|
// adjust dependent definitions
|
|
{$ifndef UseLZW} {$undef GIFGraphic} {$endif}
|
|
{$ifndef TIFFGraphic} {$undef EPSGraphic} {$endif}
|
|
|