Issues (331)

examples/a8-mask.php (3 issues)

Labels
Severity
1
<?php
2
3
use Cairo\Context;
0 ignored issues
show
The type Cairo\Context was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
4
use Cairo\Surface\Image;
0 ignored issues
show
The type Cairo\Surface\Image was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
5
use Cairo\Surface\ImageFormat;
0 ignored issues
show
The type Cairo\Surface\ImageFormat was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
7
$width = 8;
8
$height = 8;
9
$string = '';
10
11
$surface = new Image(ImageFormat::ARGB32, $width, $height);
12
$context = new Context($surface);
13
14
$s = new Image(ImageFormat::A8, $width, $height);
15
$stride = $s->getStride();
16
17
for ($i = 0; $i < 8; $i++)
18
{
19
	$string = $string.chr(0);
20
	$string = $string.chr(0);
21
	$string = $string.chr(255);
22
	$string = $string.chr(0);
23
	$string = $string.chr(255);
24
	$string = $string.chr(0);
25
	$string = $string.chr(0);
26
	$string = $string.chr(0);
27
}
28
29
echo $string;
30
31
$s->createForData($string, ImageFormat::A8, $width, $height);
32
33
$context->setSourceRgb(0, 0, 1);
34
$context->paint();
35
$context->setSourceRgb(1, 0, 0);
36
$context->maskSurface($s, 0, 0);
37
38
$surface->writeToPng(dirname(__FILE__).'/a8-mask-php.png');
39