当前位置: 首页>>代码示例>>PHP>>正文


PHP CoreUtils::hex2Rgb方法代码示例

本文整理汇总了PHP中CoreUtils::hex2Rgb方法的典型用法代码示例。如果您正苦于以下问题:PHP CoreUtils::hex2Rgb方法的具体用法?PHP CoreUtils::hex2Rgb怎么用?PHP CoreUtils::hex2Rgb使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CoreUtils的用法示例。


在下文中一共展示了CoreUtils::hex2Rgb方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: drawCircle

 /**
  * Draw a an (optionally filled) circle on an $image
  *
  * @param resource   $image
  * @param int        $x
  * @param int        $y
  * @param int|array  $size
  * @param string     $fill
  * @param string|int $outline
  */
 static function drawCircle($image, $x, $y, $size, $fill, $outline)
 {
     if (!empty($fill)) {
         $fill = CoreUtils::hex2Rgb($fill);
         $fill = imagecolorallocate($image, $fill[0], $fill[1], $fill[2]);
     }
     if (is_string($outline)) {
         $outline = CoreUtils::hex2Rgb($outline);
         $outline = imagecolorallocate($image, $outline[0], $outline[1], $outline[2]);
     }
     if (is_array($size)) {
         $width = $size[0];
         $height = $size[1];
         $x2 = $x + $width;
         $y2 = $y + $height;
     } else {
         $x2 = $x + $size;
         $y2 = $y + $size;
         $width = $height = $size;
     }
     $cx = CoreUtils::average($x, $x2);
     $cy = CoreUtils::average($y, $y2);
     if (isset($fill)) {
         imagefilledellipse($image, $cx, $cy, $width, $height, $fill);
     }
     imageellipse($image, $cx, $cy, $width, $height, $outline);
 }
开发者ID:ponydevs,项目名称:MLPVC-RR,代码行数:37,代码来源:Image.php

示例2: getSwatchesInkscape

    static function getSwatchesInkscape($Appearance)
    {
        $label = $Appearance['label'];
        $exportts = gmdate('Y-m-d H:i:s \\G\\M\\T');
        $File = <<<GPL
GIMP Palette
Name: {$label}
Columns: 6
#
# Exported at: {$exportts}
#

GPL;
        $CGs = ColorGroups::get($Appearance['id']);
        $Colors = ColorGroups::getColorsForEach($CGs);
        foreach ($CGs as $cg) {
            foreach ($Colors[$cg['groupid']] as $c) {
                $rgb = CoreUtils::hex2Rgb($c['hex']);
                $File .= CoreUtils::pad($rgb[0], 3, ' ') . ' ' . CoreUtils::pad($rgb[1], 3, ' ') . ' ' . CoreUtils::pad($rgb[2], 3, ' ') . ' ' . $cg['label'] . ' | ' . $c['label'] . PHP_EOL;
            }
        }
        CoreUtils::downloadFile(rtrim($File), "{$label}.gpl");
    }
开发者ID:ponydevs,项目名称:MLPVC-RR,代码行数:23,代码来源:CGUtils.php


注:本文中的CoreUtils::hex2Rgb方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。