/external/ImageMagick/.github/workflows/ |
D | daily.yml | 3 - cron: 0 6 * * * 8 name: 'Linux Q${{matrix.quantum}}-x64 hdri=${{matrix.hdri}} (${{matrix.modules}})' 11 runs-on: ubuntu-latest 14 fail-fast: false 16 quantum: [ 8, 16, 32, 64 ] 18 modules: [ 'with-modules', 'without-modules' ] 20 - quantum: 8 22 - quantum: 32 24 - quantum: 64 28 - name: Install dependencies [all …]
|
D | master.yml | 4 - master 6 - '!*' 9 - master 17 runs-on: ubuntu-latest 20 fail-fast: true 25 - name: Install dependencies 27 set -e 28 apt-get update -y 29 apt-get install -y autoconf pkg-config ${{matrix.compiler}} 31 - uses: actions/checkout@v1 [all …]
|
/external/ImageMagick/MagickCore/ |
D | quantum.c | 12 % MagicCore Methods to Acquire / Destroy Quantum Pixels % 19 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 22 % You may not use this file except in compliance with the License. You may % 44 #include "MagickCore/blob-private.h" 45 #include "MagickCore/color-private.h" 47 #include "MagickCore/exception-private.h" 49 #include "MagickCore/cache-private.h" 51 #include "MagickCore/colorspace-private.h" 58 #include "MagickCore/memory-private.h" 62 #include "MagickCore/pixel-accessor.h" [all …]
|
D | attribute.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 47 #include "MagickCore/blob-private.h" 49 #include "MagickCore/cache-private.h" 50 #include "MagickCore/cache-view.h" 54 #include "MagickCore/color-private.h" 56 #include "MagickCore/colormap-private.h" 58 #include "MagickCore/colorspace-private.h" 60 #include "MagickCore/composite-private.h" 63 #include "MagickCore/draw-private.h" [all …]
|
D | quantum-private.h | 2 Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization 5 You may not use this file except in compliance with the License. You may 16 MagickCore quantum inline methods. 23 #include "MagickCore/image-private.h" 24 #include "MagickCore/pixel-accessor.h" 48 depth, member 49 quantum; member 94 static inline MagickSizeType GetQuantumRange(const size_t depth) in GetQuantumRange() argument 102 if (depth == 0) in GetQuantumRange() 106 return((MagickSizeType) ((one << (MagickMin(depth,max_depth)-1))+ in GetQuantumRange() [all …]
|
D | quantum-import.c | 18 % MagickCore Methods to Import Quantum Pixels % 25 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 28 % You may not use this file except in compliance with the License. You may % 50 #include "MagickCore/blob-private.h" 51 #include "MagickCore/color-private.h" 53 #include "MagickCore/exception-private.h" 64 #include "MagickCore/pixel-accessor.h" 65 #include "MagickCore/pixel-private.h" 66 #include "MagickCore/quantum.h" 67 #include "MagickCore/quantum-private.h" [all …]
|
D | quantum-export.c | 18 % MagickCore Methods to Export Quantum Pixels % 25 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 28 % You may not use this file except in compliance with the License. You may % 50 #include "MagickCore/blob-private.h" 51 #include "MagickCore/color-private.h" 53 #include "MagickCore/exception-private.h" 64 #include "MagickCore/pixel-accessor.h" 65 #include "MagickCore/quantum.h" 66 #include "MagickCore/quantum-private.h" 102 % o quantum_info: the quantum info. [all …]
|
D | visual-effects.c | 21 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 24 % You may not use this file except in compliance with the License. You may % 45 #include "MagickCore/accelerate-private.h" 50 #include "MagickCore/cache-view.h" 53 #include "MagickCore/color-private.h" 54 #include "MagickCore/colorspace-private.h" 62 #include "MagickCore/exception-private.h" 64 #include "MagickCore/gem-private.h" 70 #include "MagickCore/image-private.h" 73 #include "MagickCore/memory-private.h" [all …]
|
D | pixel-accessor.h | 2 Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization 5 You may not use this file except in compliance with the License. You may 23 #include "MagickCore/cache-view.h" 36 static inline Quantum ClampPixel(const MagickRealType pixel) in ClampPixel() 39 return((Quantum) 0); in ClampPixel() 41 return((Quantum) QuantumRange); in ClampPixel() 43 return((Quantum) (pixel+0.5f)); in ClampPixel() 45 return((Quantum) pixel); in ClampPixel() 49 static inline Quantum GetPixela(const Image *magick_restrict image, in GetPixela() 50 const Quantum *magick_restrict pixel) in GetPixela() [all …]
|
D | quantize.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 40 % the number of colors so it can be displayed on raster device with less 45 % transmission and real-time animation. 51 % each pixel is a point in RGB space. RGB space is a 3-dimensional 58 % defined over a domain consisting of the cube in RGB space with opposite 70 % This corresponds to bisecting the parent cube with planes passing 83 % sufficient depth to represent each possible input color in a leaf. 84 % However, it is impractical to generate a fully-formed color description 86 % colors components in the input image are quantized to k-bit precision, [all …]
|
D | image.h | 2 Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization 5 You may not use this file except in compliance with the License. You may 25 #define OpaqueAlpha ((Quantum) QuantumRange) 26 #define TransparentAlpha ((Quantum) 0) 133 #include "MagickCore/cache-view.h" 144 #include "MagickCore/quantum.h" 174 depth, /* depth of image on read/write */ member 216 fuzz; /* current color fuzz attribute - move to image_info */ 240 scene, /* index of image in multi-image file */ 315 *properties, /* general settings, to save with image */ [all …]
|
/external/ImageMagick/coders/ |
D | map.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 45 #include "MagickCore/blob-private.h" 48 #include "MagickCore/color-private.h" 50 #include "MagickCore/colormap-private.h" 52 #include "MagickCore/colorspace-private.h" 54 #include "MagickCore/exception-private.h" 57 #include "MagickCore/image-private.h" 61 #include "MagickCore/pixel-accessor.h" 62 #include "MagickCore/quantum-private.h" [all …]
|
D | miff.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 45 #include "MagickCore/blob-private.h" 48 #include "MagickCore/color-private.h" 50 #include "MagickCore/colormap-private.h" 52 #include "MagickCore/colorspace-private.h" 55 #include "MagickCore/exception-private.h" 58 #include "MagickCore/image-private.h" 59 #include "MagickCore/linked-list.h" 63 #include "MagickCore/memory-private.h" [all …]
|
D | ipl.c | 22 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 25 % You may not use this file except in compliance with the License. You may % 46 #include "MagickCore/blob-private.h" 49 #include "MagickCore/colorspace-private.h" 51 #include "MagickCore/exception-private.h" 53 #include "MagickCore/image-private.h" 58 #include "MagickCore/monitor-private.h" 61 #include "MagickCore/quantum-private.h" 80 depth, member 150 % into the standard "Image" structure. The "scenes" (image_info->scene) [all …]
|
D | pnm.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 45 #include "MagickCore/blob-private.h" 48 #include "MagickCore/color-private.h" 50 #include "MagickCore/colorspace-private.h" 52 #include "MagickCore/exception-private.h" 54 #include "MagickCore/image-private.h" 60 #include "MagickCore/monitor-private.h" 61 #include "MagickCore/pixel-accessor.h" 63 #include "MagickCore/quantum-private.h" [all …]
|
D | plasma.c | 20 % Copyright 1999-2020 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" 49 #include "MagickCore/exception-private.h" 51 #include "MagickCore/image-private.h" 57 #include "MagickCore/monitor-private.h" 58 #include "MagickCore/pixel-accessor.h" 60 #include "MagickCore/random-private.h" 61 #include "MagickCore/signature-private.h" 62 #include "MagickCore/quantum-private.h" [all …]
|
D | stegano.c | 20 % Copyright 1999-2020 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" 49 #include "MagickCore/exception-private.h" 51 #include "MagickCore/image-private.h" 56 #include "MagickCore/monitor-private.h" 57 #include "MagickCore/pixel-accessor.h" 58 #include "MagickCore/quantum-private.h" 94 #define SetBit(i,set) SetPixelIndex(image,(Quantum) ((set) != 0 ? \ in ReadSTEGANOImage() 114 register Quantum in ReadSTEGANOImage() [all …]
|
D | sun.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 45 #include "MagickCore/blob-private.h" 48 #include "MagickCore/color-private.h" 50 #include "MagickCore/colormap-private.h" 52 #include "MagickCore/colorspace-private.h" 54 #include "MagickCore/exception-private.h" 56 #include "MagickCore/image-private.h" 61 #include "MagickCore/monitor-private.h" 62 #include "MagickCore/pixel-accessor.h" [all …]
|
D | sgi.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 45 #include "MagickCore/blob-private.h" 48 #include "MagickCore/color-private.h" 51 #include "MagickCore/colorspace-private.h" 53 #include "MagickCore/exception-private.h" 55 #include "MagickCore/image-private.h" 60 #include "MagickCore/monitor-private.h" 61 #include "MagickCore/pixel-accessor.h" 63 #include "MagickCore/quantum-private.h" [all …]
|
D | vips.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 45 #include "MagickCore/blob-private.h" 48 #include "MagickCore/colorspace-private.h" 50 #include "MagickCore/exception-private.h" 52 #include "MagickCore/image-private.h" 57 #include "MagickCore/monitor-private.h" 58 #include "MagickCore/pixel-accessor.h" 60 #include "MagickCore/quantum-private.h" 73 VIPSBandFormatNOTSET = -1, [all …]
|
D | fits.c | 20 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 23 % You may not use this file except in compliance with the License. You may % 45 #include "MagickCore/blob-private.h" 47 #include "MagickCore/color-private.h" 49 #include "MagickCore/colorspace-private.h" 52 #include "MagickCore/exception-private.h" 54 #include "MagickCore/image-private.h" 60 #include "MagickCore/monitor-private.h" 61 #include "MagickCore/pixel-accessor.h" 63 #include "MagickCore/quantum-private.h" [all …]
|
/external/ImageMagick/ |
D | Install-unix.txt | 3 ImageMagick builds on a variety of Unix and Unix-like operating systems 9 Unpack the distribution it with this command: 26 $magick> cd ImageMagick-7.0.9 36 Host system type: x86_64-unknown-linux-gnu 37 Build system type: x86_64-unknown-linux-gnu 40 ---------------------------------------------------------------------------- 41 Shared libraries --enable-shared=yes yes 42 Static libraries --enable-static=yes yes 43 Module support --with-modules=yes yes 44 GNU ld --with-gnu-ld=yes yes [all …]
|
D | .travis.yml | 7 - clang 8 - gcc 11 - sudo add-apt-repository -y ppa:as-bahanta/raqm 12 - sudo add-apt-repository ppa:dns/gnu -y 13 - sudo apt-key update -q 14 - sudo apt-get update -q 15 - sudo apt-get install --only-upgrade autoconf 16 - sudo apt-get install -y libraqm-dev libfreetype6-dev libharfbuzz-dev libfribidi-dev 19 set -e 20 set -x [all …]
|
D | Install-mac.txt | 1 Mac OS X-specific Build instructions 11 xcode-select --install 22 Go to http://brew.sh and copy the one-liner that installs "homebrew". 32 identify -version 41 brew reinstall imagemagick --with-jp2 --with-quantum-depth-16 --with-pango 43 If you have any problems with "homebrew", simply run: 51 Method 2: Compile from source - not necessary if you used "homebrew" method 55 Perform these steps as an administrator or with the sudo command: 60 $magick> sudo port -v install freetype +bytecode 61 $magick> sudo port -v install librsvg [all …]
|
/external/ImageMagick/MagickWand/ |
D | pixel-iterator.c | 26 % Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization % 29 % You may not use this file except in compliance with the License. You may % 51 #include "MagickWand/magick-wand-private.h" 52 #include "MagickWand/pixel-iterator.h" 53 #include "MagickWand/pixel-wand.h" 108 % ClearPixelIterator() clear resources associated with a PixelIterator. 122 assert(iterator->signature == MagickWandSignature); in ClearPixelIterator() 123 if (iterator->debug != MagickFalse) in ClearPixelIterator() 124 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",iterator->name); in ClearPixelIterator() 125 iterator->pixel_wands=DestroyPixelWands(iterator->pixel_wands, in ClearPixelIterator() [all …]
|