-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperties.php
27 lines (27 loc) · 1.27 KB
/
properties.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div class="row">
<div class="col-12">
<ol>
<?php foreach ($properties->info()['dominantColors'] as $key => $dominantColors): ?>
<?php foreach ($dominantColors as $key => $dominantColor): ?>
<?php
// Preparing Values
$rgb = json_decode(json_encode($dominantColor))->color;
$score = json_decode(json_encode($dominantColor))->score;
$pixelFraction = json_decode(json_encode($dominantColor))->pixelFraction;
?>
<li>
<strong>
<span style="color: rgb(<?php echo $rgb->red; ?>, <?php echo $rgb->green; ?>, <?php echo $rgb->blue; ?>);">
RGB:
</span>
</strong>
<?php echo $rgb->red; ?>, <?php echo $rgb->green; ?>, <?php echo $rgb->blue; ?>
<br>
<strong>Score: </strong><?php echo $score ?><br>
<strong>Pixel Fraction: </strong><?php echo $pixelFraction ?>
</li>
<?php endforeach ?>
<?php endforeach ?>
</ol>
</div>
</div>