Hello,
Here is a small patch to fix a warning in image2wbmp()
when you call that
function without the optional parameters.
Nuno
reproduce script:
<?
$image = imagecreatefrompng('php.png');
image2wbmp($image);
?
This is already addressed in CVS.
Ilia
Hello,
Here is a small patch to fix a warning in
image2wbmp()
when you call that
function without the optional parameters.Nuno
reproduce script:
<?
$image = imagecreatefrompng('php.png');
image2wbmp($image);
?
Sorry Ilia, but it isn't. Your change only sets the parameter to 0 when you
specify an invalid threshold.
When you don't specify the threshold, it will throw a warning because the
default is -1 (invalid).
Nuno
This is already addressed in CVS.
Ilia
Hello,
Here is a small patch to fix a warning in
image2wbmp()
when you call
that
function without the optional parameters.Nuno
reproduce script:
<?
$image = imagecreatefrompng('php.png');
image2wbmp($image);
?