/imagick/ |
H A D | shim_im6_to_im7.c | 41 if (channel != UndefinedChannel) { in MagickAdaptiveBlurImageChannel() 47 if (channel != UndefinedChannel) { in MagickAdaptiveBlurImageChannel() 58 if (channel != UndefinedChannel) { in MagickAdaptiveSharpenImageChannel() 64 if (channel != UndefinedChannel) { in MagickAdaptiveSharpenImageChannel() 75 if (channel != UndefinedChannel) { in MagickAddNoiseImageChannel() 82 if (channel != UndefinedChannel) { in MagickAddNoiseImageChannel() 93 if (channel != UndefinedChannel) { in MagickAutoGammaImageChannel() 99 if (channel != UndefinedChannel) { in MagickAutoGammaImageChannel() 107 const ChannelType channel) { in MagickAutoLevelImageChannel() argument 274 const ChannelType channel) { in MagickEqualizeImageChannel() argument [all …]
|
H A D | shim_im6_to_im7.h | 11 const ChannelType channel, 31 const ChannelType channel, 37 const ChannelType channel, 43 const ChannelType channel, 47 const ChannelType channel); 49 const ChannelType channel); 56 const ChannelType channel); 66 const ChannelType channel); 99 const ChannelType channel, 104 const ChannelType channel,const double gamma); [all …]
|
H A D | Imagick.stub.php | 58 int $channel = Imagick::CHANNEL_DEFAULT argument 64 int $channel = Imagick::CHANNEL_DEFAULT argument 70 int $channel = Imagick::CHANNEL_DEFAULT argument 77 int $channel = Imagick::CHANNEL_DEFAULT argument 128 int $channel = Imagick::CHANNEL_DEFAULT argument 180 int $channel = Imagick::CHANNEL_DEFAULT argument 252 ?int $channel = Imagick::CHANNEL_DEFAULT argument 297 int $channel = Imagick::CHANNEL_DEFAULT argument 348 int $channel = Imagick::CHANNEL_DEFAULT argument 385 int $channel = Imagick::CHANNEL_DEFAULT argument [all …]
|
H A D | imagick_class.c | 198 im_long channel = IM_DEFAULT_CHANNEL; in PHP_METHOD() local 256 im_long channel = IM_DEFAULT_CHANNEL; in PHP_METHOD() local 497 im_long channel = IM_DEFAULT_CHANNEL; in PHP_METHOD() local 527 im_long channel = IM_DEFAULT_CHANNEL; in PHP_METHOD() local 2236 im_long channel; in PHP_METHOD() local 2822 im_long channel = DefaultChannels; in PHP_METHOD() local 4927 im_long channel = DefaultChannels; in PHP_METHOD() local 5258 im_long channel; in PHP_METHOD() local 8911 im_long channel; local 12719 channel, [all …]
|
/imagick/tests/ |
H A D | 155_Imagick_thresholdImage_basic.phpt | 12 //$channel = Imagick::CHANNEL_DEFAULT; 13 $channel = Imagick::CHANNEL_RED|Imagick::CHANNEL_GREEN|Imagick::CHANNEL_BLUE; 15 function thresholdimage($threshold, $channel) { 18 $imagick->thresholdimage($threshold * \Imagick::getQuantum(), $channel); 23 thresholdimage($threshold, $channel) ;
|
H A D | 116_Imagick_separateImageChannel_basic.phpt | 11 $channel = Imagick::CHANNEL_DEFAULT; 13 function separateImageChannel($channel) { 16 $imagick->separateimagechannel($channel); 21 separateImageChannel($channel) ;
|
H A D | 274_imagick_setImageAlpha.phpt | 58 for ($channel=0; $channel<4; $channel++) { 59 $actual = $pixels[$channel]; 60 $expected = $expectedValues[$channel]; 62 $channelName = $channelNames[$channel]; 64 echo "Pixel values appear incorrect for pixelType $pixelType channel:$channelName\n";
|
H A D | 096_Imagick_negateImage_basic.phpt | 12 $channel = Imagick::CHANNEL_DEFAULT; 14 function negateImage($grayOnly, $channel) { 17 $imagick->negateImage($grayOnly, $channel); 22 negateImage($grayOnly, $channel) ;
|
H A D | 078_Imagick_gammaImage_basic.phpt | 12 $channel = Imagick::CHANNEL_DEFAULT; 14 function gammaImage($gamma, $channel) { 17 $imagick->gammaImage($gamma, $channel); 22 gammaImage($gamma, $channel) ;
|
H A D | 032_Imagick_addNoiseImage_basic.phpt | 12 $channel = Imagick::CHANNEL_DEFAULT; 14 function addNoiseImage($noiseType, $channel) { 17 $imagick->addNoiseImage($noiseType, $channel); 22 addNoiseImage($noiseType, $channel) ;
|
H A D | 161_Imagick_transformImageColorspace_basic.phpt | 12 $channel = Imagick::CHANNEL_DEFAULT; 14 function transformImageColorspace($colorSpace, $channel) { 18 $imagick->separateImageChannel($channel); 23 transformImageColorspace($colorSpace, $channel) ;
|
H A D | 037_Imagick_blurImage_basic.phpt | 13 $channel = Imagick::CHANNEL_DEFAULT; 15 function blurImage($radius, $sigma, $channel) { 18 $imagick->blurImage($radius, $sigma, $channel); 23 blurImage($radius, $sigma, $channel) ;
|
H A D | 038_Imagick_brightnessContrastImage_basic.phpt | 13 $channel = Imagick::CHANNEL_DEFAULT; 15 function brightnessContrastImage($brightness, $contrast, $channel) { 18 $imagick->brightnessContrastImage($brightness, $contrast, $channel); 23 brightnessContrastImage($brightness, $contrast, $channel) ;
|
H A D | 135_Imagick_sharpenImage_basic.phpt | 13 $channel = Imagick::CHANNEL_DEFAULT; 15 function sharpenImage($radius, $sigma, $channel) { 18 $imagick->sharpenimage($radius, $sigma, $channel); 23 sharpenImage($radius, $sigma, $channel) ;
|
H A D | 080_Imagick_gaussianBlurImage_basic.phpt | 13 $channel = Imagick::CHANNEL_DEFAULT; 15 function gaussianBlurImage($radius, $sigma, $channel) { 18 $imagick->gaussianBlurImage($radius, $sigma, $channel); 23 gaussianBlurImage($radius, $sigma, $channel) ;
|
H A D | 028_Imagick_adaptiveSharpenImage_basic.phpt | 13 $channel = Imagick::CHANNEL_DEFAULT; 15 function adaptiveSharpenImage($radius, $sigma, $channel) { 18 $imagick->adaptiveSharpenImage($radius, $sigma, $channel); 23 adaptiveSharpenImage($radius, $sigma, $channel) ;
|
H A D | 029_Imagick_adaptiveBlurImage_basic.phpt | 13 $channel = Imagick::CHANNEL_DEFAULT; 15 function adaptiveBlurImage($radius, $sigma, $channel) { 18 $imagick->adaptiveBlurImage($radius, $sigma, $channel); 23 adaptiveBlurImage($radius, $sigma, $channel) ;
|
H A D | 094_Imagick_motionBlurImage_basic.phpt | 14 $channel = Imagick::CHANNEL_DEFAULT; 16 function motionBlurImage($radius, $sigma, $angle, $channel) { 19 $imagick->motionBlurImage($radius, $sigma, $angle, $channel); 24 motionBlurImage($radius, $sigma, $angle, $channel) ;
|
H A D | 095_Imagick_normalizeImage_basic.phpt | 11 $channel = Imagick::CHANNEL_DEFAULT; 13 function normalizeImage($channel) { 18 $imagick->normalizeImage($channel); 24 normalizeImage($channel) ;
|
H A D | 104_Imagick_randomThresholdImage_basic.phpt | 13 $channel = Imagick::CHANNEL_DEFAULT; 15 function randomThresholdimage($lowThreshold, $highThreshold, $channel) { 22 $channel 28 randomThresholdimage($lowThreshold, $highThreshold, $channel) ;
|
H A D | 115_Imagick_selectiveBlurImage_basic.phpt | 14 $channel = Imagick::CHANNEL_DEFAULT; 16 function selectiveBlurImage($radius, $sigma, $threshold, $channel) { 19 $imagick->selectiveBlurImage($radius, $sigma, $threshold, $channel); 24 selectiveBlurImage($radius, $sigma, $threshold, $channel) ;
|
H A D | 153_Imagick_statisticImage_basic.phpt | 15 $channel = Imagick::CHANNEL_DEFAULT; 17 function statisticImage($statisticType, $w20, $h20, $channel) { 25 $channel 32 statisticImage($statisticType, $w20, $h20, $channel) ;
|
H A D | 075_Imagick_floodFillPaintImage_basic.phpt | 17 $channel = Imagick::CHANNEL_DEFAULT; 19 function floodFillPaintImage($fillColor, $fuzz, $targetColor, $x, $y, $inverse, $channel) { 29 $channel 35 floodFillPaintImage($fillColor, $fuzz, $targetColor, $x, $y, $inverse, $channel) ;
|
H A D | 165_Imagick_unsharpMaskImage_basic.phpt | 15 $channel = Imagick::CHANNEL_DEFAULT;
|
/imagick/docker/nixos/ |
H A D | Dockerfile | 3 RUN nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs 4 RUN nix-channel --update
|