93 lines
4.2 KiB
C
93 lines
4.2 KiB
C
/*
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||
% %
|
||
% %
|
||
% %
|
||
% DDDD EEEEE PPPP RRRR EEEEE CCCC AAA TTTTT EEEEE %
|
||
% D D E P P R R E C A A T E %
|
||
% D D EEE PPPPP RRRR EEE C AAAAA T EEE %
|
||
% D D E P R R E C A A T E %
|
||
% DDDD EEEEE P R R EEEEE CCCC A A T EEEEE %
|
||
% %
|
||
% %
|
||
% MagickCore Deprecated Methods %
|
||
% %
|
||
% Software Design %
|
||
% Cristy %
|
||
% October 2002 %
|
||
% %
|
||
% %
|
||
% Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization %
|
||
% dedicated to making software imaging solutions freely available. %
|
||
% %
|
||
% You may not use this file except in compliance with the License. You may %
|
||
% obtain a copy of the License at %
|
||
% %
|
||
% http://www.imagemagick.org/script/license.php %
|
||
% %
|
||
% Unless required by applicable law or agreed to in writing, software %
|
||
% distributed under the License is distributed on an "AS IS" BASIS, %
|
||
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
|
||
% See the License for the specific language governing permissions and %
|
||
% limitations under the License. %
|
||
% %
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||
%
|
||
%
|
||
%
|
||
*/
|
||
|
||
/*
|
||
Include declarations.
|
||
*/
|
||
#include "MagickCore/studio.h"
|
||
#include "MagickCore/property.h"
|
||
#include "MagickCore/blob.h"
|
||
#include "MagickCore/blob-private.h"
|
||
#include "MagickCore/cache.h"
|
||
#include "MagickCore/cache-view.h"
|
||
#include "MagickCore/client.h"
|
||
#include "MagickCore/color.h"
|
||
#include "MagickCore/color-private.h"
|
||
#include "MagickCore/colormap.h"
|
||
#include "MagickCore/colormap-private.h"
|
||
#include "MagickCore/colorspace.h"
|
||
#include "MagickCore/composite.h"
|
||
#include "MagickCore/composite-private.h"
|
||
#include "MagickCore/constitute.h"
|
||
#include "MagickCore/draw.h"
|
||
#include "MagickCore/draw-private.h"
|
||
#include "MagickCore/effect.h"
|
||
#include "MagickCore/enhance.h"
|
||
#include "MagickCore/exception.h"
|
||
#include "MagickCore/exception-private.h"
|
||
#include "MagickCore/fx.h"
|
||
#include "MagickCore/geometry.h"
|
||
#include "MagickCore/identify.h"
|
||
#include "MagickCore/image.h"
|
||
#include "MagickCore/image-private.h"
|
||
#include "MagickCore/list.h"
|
||
#include "MagickCore/log.h"
|
||
#include "MagickCore/memory_.h"
|
||
#include "MagickCore/magick.h"
|
||
#include "MagickCore/monitor.h"
|
||
#include "MagickCore/monitor-private.h"
|
||
#include "MagickCore/morphology.h"
|
||
#include "MagickCore/paint.h"
|
||
#include "MagickCore/pixel.h"
|
||
#include "MagickCore/pixel-accessor.h"
|
||
#include "MagickCore/quantize.h"
|
||
#include "MagickCore/random_.h"
|
||
#include "MagickCore/resource_.h"
|
||
#include "MagickCore/semaphore.h"
|
||
#include "MagickCore/segment.h"
|
||
#include "MagickCore/splay-tree.h"
|
||
#include "MagickCore/statistic.h"
|
||
#include "MagickCore/string_.h"
|
||
#include "MagickCore/threshold.h"
|
||
#include "MagickCore/transform.h"
|
||
#include "MagickCore/utility.h"
|
||
|
||
#if !defined(MAGICKCORE_EXCLUDE_DEPRECATED)
|
||
|
||
#endif
|