PHP 8.5.0 Alpha 4 available for testing

Voting

: zero minus zero?
(Example: nine)

The Note You're Voting On

alain at ocarina dot fr
13 years ago
The fuzz is just working well in a range of 0 to 65535.

I suggest you to try to move fuzz on a color spectrum image.

1/ Get a color spectrum ( Google Image has a lot )

2/ Try this code :

<?php

function fuzzTest($source, $target, $fuzz) {

// Loads image
$im = new Imagick($source);

// Resizes images to make them easily comparable
$im->resizeImage(320, 240, Imagick::FILTER_LANCZOS, 1, true);

// Apply fuzz
$im->paintTransparentImage($im->getImagePixelColor(0, 0), 0, $fuzz);

// Writes image
$im->setImageFormat('png');
$im->writeImage($target);
$im->destroy();

return
true;
}

for (
$i = 0; ($i <= 10); $i++) {
fuzzTest('spectrum.png', "test_{$i}.png", (6553.5 * $i));
echo
'<img src="test_' . $i . '.png" />&nbsp;';
}

?>

<< Back to user notes page

To Top