Last update: 31.03.2008 | © 2024 Julian von Mendel | Datenschutz
<?php
/* (C) 2008 by Julian von Mendel (prog@derjulian.net)
* License: LGPL3
* $LastChangedBy: jvm $
* $LastChangedDate: 2008-03-31 17:46:20 +0000 (Mon, 31 Mar 2008) $
* $Revision: 1 $
*
* Todo: generalize; does not work as good as expected?! something wrong?
*/
require_once("image.php");
class image_laplace extends imagealgorithmmask {
function __construct() {
$this->setparameter(array(
array(-1, -1, -1, -1, -1),
array(-1, -1, -1, -1, -1),
array(-1, -1, 24, -1, -1),
array(-1, -1, -1, -1, -1),
array(-1, -1, -1, -1, -1)), 4);
}
}
© 2009 Julian von Mendel (http://derjulian.net) | Datum: 15.10.2024