• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:with +full:- +full:quantum +full:- +full:depth

20 %  Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization      %
23 % You may not use this file except in compliance with the License. You may %
44 #include "MagickCore/blob-private.h"
47 #include "MagickCore/colorspace-private.h"
50 #include "MagickCore/exception-private.h"
52 #include "MagickCore/image-private.h"
58 #include "MagickCore/monitor-private.h"
59 #include "MagickCore/pixel-accessor.h"
61 #include "MagickCore/random-private.h"
62 #include "MagickCore/signature-private.h"
63 #include "MagickCore/quantum-private.h"
66 #include "MagickCore/visual-effects.h"
99 Quantum in PlasmaPixel()
104 if (q == (Quantum *) NULL) in PlasmaPixel()
106 SetPixelRed(image,(Quantum) (QuantumRange* in PlasmaPixel()
108 SetPixelGreen(image,(Quantum) (QuantumRange* in PlasmaPixel()
110 SetPixelBlue(image,(Quantum) (QuantumRange* in PlasmaPixel()
130 Quantum in ReadPlasmaImage()
140 depth, in ReadPlasmaImage() local
151 (void) FormatLocaleString(read_info->filename,MagickPathExtent, in ReadPlasmaImage()
152 "gradient:%s",image_info->filename); in ReadPlasmaImage()
158 if (IsGrayColorspace(image->colorspace) != MagickFalse) in ReadPlasmaImage()
160 for (y=0; y < (ssize_t) image->rows; y++) in ReadPlasmaImage()
162 q=GetAuthenticPixels(image,0,y,image->columns,1,exception); in ReadPlasmaImage()
163 if (q == (Quantum *) NULL) in ReadPlasmaImage()
165 for (x=0; x < (ssize_t) image->columns; x++) in ReadPlasmaImage()
175 segment_info.x2=(double) image->columns-1; in ReadPlasmaImage()
176 segment_info.y2=(double) image->rows-1; in ReadPlasmaImage()
177 if (LocaleCompare(image_info->filename,"fractal") == 0) in ReadPlasmaImage()
209 i=(size_t) MagickMax(image->columns,image->rows)/2; in ReadPlasmaImage()
212 for (depth=1; ; depth++) in ReadPlasmaImage()
214 if (PlasmaImage(image,&segment_info,0,depth,exception) != MagickFalse) in ReadPlasmaImage()
216 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) depth, in ReadPlasmaImage()
239 % whether the format supports native in-memory I/O, and a brief
253 entry->decoder=(DecodeImageHandler *) ReadPlasmaImage; in RegisterPLASMAImage()
254 entry->flags^=CoderAdjoinFlag; in RegisterPLASMAImage()
255 entry->format_type=ImplicitFormatType; in RegisterPLASMAImage()
258 entry->decoder=(DecodeImageHandler *) ReadPlasmaImage; in RegisterPLASMAImage()
259 entry->flags^=CoderAdjoinFlag; in RegisterPLASMAImage()
260 entry->format_type=ImplicitFormatType; in RegisterPLASMAImage()