Lines Matching refs:color

13458         var color = outlineDict.getArray('C');
13462 …if (Array.isArray(color) && color.length === 3 && (color[0] !== 0 || color[1] !== 0 || color[2] !=…
13463 rgbColor = _colorspace.ColorSpace.singletons.rgb.getRgb(color, 0);
13472 color: rgbColor,
28038 function sRGBTransferFunction(color) {
28039 if (color <= 0.0031308) {
28040 return adjustToRange(0, 1, 12.92 * color);
28043 return adjustToRange(0, 1, (1 + 0.055) * Math.pow(color, 1 / 2.4) - 0.055);
28569 color: this.color,
28625 value: function setColor(color) {
28628 if (!Array.isArray(color)) {
28629 this.color = rgbColor;
28633 switch (color.length) {
28635 this.color = null;
28639 _colorspace.ColorSpace.singletons.gray.getRgbItem(color, 0, rgbColor, 0);
28641 this.color = rgbColor;
28645 _colorspace.ColorSpace.singletons.rgb.getRgbItem(color, 0, rgbColor, 0);
28647 this.color = rgbColor;
28651 _colorspace.ColorSpace.singletons.cmyk.getRgbItem(color, 0, rgbColor, 0);
28653 this.color = rgbColor;
28657 this.color = rgbColor;
28927 _this2.data.color = null;
29363 _this9.data.color = null;
29367 _this9.data.color = _this9.color;
31233 var patternName, pattern, dict, typeNum, color, shading, matrix;
31253 color = cs.base ? cs.base.getRgb(args, 0) : null;
31254 …return _context3.abrupt("return", this.handleTilingType(fn, color, resources, pattern, dict, opera…
48833 var color = new Float32Array(cs.numComps),
48839 fn(ratio, 0, color, 0);
48840 rgbColor = cs.getRgb(color, 0);
48998 var color = this.tmpCsCompsBuf;
49001 this.context.colorFn(components, 0, color, 0);
49004 return this.context.colorSpace.getRgb(color, 0);
49018 var color = reader.readComponents();
49046 colors.push(color);
49065 var color = reader.readComponents();
49068 colors.push(color);
55221 var color = image[imageOffset + j];
55224 if (color < mask[maskOffset] || color > mask[maskOffset + 1]) {