You are here

filtersie.gd.inc in FiltersIE 7

gd functions.

File

filtersie.gd.inc
View source
<?php

/**
 * @file
 * gd functions.
 */

/**
 * Apply an convolution to an image given a matrix kernel and a divisorusing GD.
 *
 * @param $image
 *   An image object. The $image->resource will be modified by this call.
 * @param $matrix
 *   The matrix kernel to be applied.
 * @param $divisor
 *   The divisor to be applied.
 *  
 * @return
 *   TRUE or FALSE, based on success.
 *
 * @see imageconvolution()
 */
function image_gd_filtersie_convolution(stdClass $image, $matrix, $divisor, $offset) {
  return imageconvolution($image->resource, $matrix, $divisor, $offset);
}

/**
 * Sharpen an image using the Unsharp masking technique using GD.
 *
 * @param $img
 *   An image object. The $image->resource will be modified by this call.
 * @param $amount, $radius and $threshols
 *   @see http://en.wikipedia.org/wiki/Unsharp_masking#Digital_unsharp_masking
 * 
 * @return
 *   TRUE or FALSE, based on success.
 *
 * @see imageconvolution()
 * @see http://en.wikipedia.org/wiki/Unsharp_masking 
 * @see http://vikjavev.no/computing/ump.php, author of this function.
 */
function image_gd_filtersie_UnsharpMask(stdClass $image, $amount, $radius, $threshold, $sigma = NULL) {
  $img = $image->resource;

  ////////////////////////////////////////////////////////////////////////////////////////////////

  ////

  ////                  Unsharp Mask for PHP - version 2.1.1

  ////

  ////    Unsharp mask algorithm by Torstein Hønsi 2003-07.

  ////             thoensi_at_netcom_dot_no.

  ////               Please leave this notice.

  ////

  ///////////////////////////////////////////////////////////////////////////////////////////////

  // $img is an image that is already created within php using
  // imgcreatetruecolor. No url! $img must be a truecolor image.
  // Attempt to calibrate the parameters to Photoshop:
  if ($amount > 500) {
    $amount = 500;
  }
  $amount = $amount * 0.016;
  if ($radius > 50) {
    $radius = 50;
  }
  $radius = $radius * 2;
  if ($threshold > 255) {
    $threshold = 255;
  }
  $radius = abs(round($radius));

  // Only integers make sense.
  if ($radius == 0) {
    return $img;
    imagedestroy($img);
  }
  $w = imagesx($img);
  $h = imagesy($img);
  $imgCanvas = imagecreatetruecolor($w, $h);
  $imgBlur = imagecreatetruecolor($w, $h);

  // Gaussian blur matrix:
  //
  //    1    2    1
  //    2    4    2
  //    1    2    1
  //

  //////////////////////////////////////////////////
  if (function_exists('imageconvolution')) {

    // PHP >= 5.1
    $matrix = array(
      array(
        1,
        2,
        1,
      ),
      array(
        2,
        4,
        2,
      ),
      array(
        1,
        2,
        1,
      ),
    );
    imagecopy($imgBlur, $img, 0, 0, 0, 0, $w, $h);
    imageconvolution($imgBlur, $matrix, 16, 0);
  }
  else {

    // Move copies of the image around one pixel at the time and merge them with weight
    // according to the matrix. The same matrix is simply repeated for higher radii.
    for ($i = 0; $i < $radius; $i++) {
      imagecopy($imgBlur, $img, 0, 0, 1, 0, $w - 1, $h);

      // left
      imagecopymerge($imgBlur, $img, 1, 0, 0, 0, $w, $h, 50);

      // right
      imagecopymerge($imgBlur, $img, 0, 0, 0, 0, $w, $h, 50);

      // center
      imagecopy($imgCanvas, $imgBlur, 0, 0, 0, 0, $w, $h);
      imagecopymerge($imgBlur, $imgCanvas, 0, 0, 0, 1, $w, $h - 1, 33.33333);

      // up
      imagecopymerge($imgBlur, $imgCanvas, 0, 1, 0, 0, $w, $h, 25);

      // down
    }
  }
  if ($threshold > 0) {

    // Calculate the difference between the blurred pixels and the original
    // and set the pixels
    for ($x = 0; $x < $w - 1; $x++) {

      // each row
      for ($y = 0; $y < $h; $y++) {

        // each pixel
        $rgbOrig = ImageColorAt($img, $x, $y);
        $rOrig = $rgbOrig >> 16 & 0xff;
        $gOrig = $rgbOrig >> 8 & 0xff;
        $bOrig = $rgbOrig & 0xff;
        $rgbBlur = ImageColorAt($imgBlur, $x, $y);
        $rBlur = $rgbBlur >> 16 & 0xff;
        $gBlur = $rgbBlur >> 8 & 0xff;
        $bBlur = $rgbBlur & 0xff;

        // When the masked pixels differ less from the original
        // than the threshold specifies, they are set to their original value.
        $rNew = abs($rOrig - $rBlur) >= $threshold ? max(0, min(255, $amount * ($rOrig - $rBlur) + $rOrig)) : $rOrig;
        $gNew = abs($gOrig - $gBlur) >= $threshold ? max(0, min(255, $amount * ($gOrig - $gBlur) + $gOrig)) : $gOrig;
        $bNew = abs($bOrig - $bBlur) >= $threshold ? max(0, min(255, $amount * ($bOrig - $bBlur) + $bOrig)) : $bOrig;
        if ($rOrig != $rNew || $gOrig != $gNew || $bOrig != $bNew) {
          $pixCol = ImageColorAllocate($img, $rNew, $gNew, $bNew);
          ImageSetPixel($img, $x, $y, $pixCol);
        }
      }
    }
  }
  else {
    for ($x = 0; $x < $w; $x++) {

      // each row
      for ($y = 0; $y < $h; $y++) {

        // each pixel
        $rgbOrig = ImageColorAt($img, $x, $y);
        $rOrig = $rgbOrig >> 16 & 0xff;
        $gOrig = $rgbOrig >> 8 & 0xff;
        $bOrig = $rgbOrig & 0xff;
        $rgbBlur = ImageColorAt($imgBlur, $x, $y);
        $rBlur = $rgbBlur >> 16 & 0xff;
        $gBlur = $rgbBlur >> 8 & 0xff;
        $bBlur = $rgbBlur & 0xff;
        $rNew = $amount * ($rOrig - $rBlur) + $rOrig;
        if ($rNew > 255) {
          $rNew = 255;
        }
        elseif ($rNew < 0) {
          $rNew = 0;
        }
        $gNew = $amount * ($gOrig - $gBlur) + $gOrig;
        if ($gNew > 255) {
          $gNew = 255;
        }
        elseif ($gNew < 0) {
          $gNew = 0;
        }
        $bNew = $amount * ($bOrig - $bBlur) + $bOrig;
        if ($bNew > 255) {
          $bNew = 255;
        }
        elseif ($bNew < 0) {
          $bNew = 0;
        }
        $rgbNew = ($rNew << 16) + ($gNew << 8) + $bNew;
        ImageSetPixel($img, $x, $y, $rgbNew);
      }
    }
  }
  imagedestroy($imgCanvas);
  imagedestroy($imgBlur);
  return TRUE;
}

Functions

Namesort descending Description
image_gd_filtersie_convolution Apply an convolution to an image given a matrix kernel and a divisorusing GD.
image_gd_filtersie_UnsharpMask Sharpen an image using the Unsharp masking technique using GD.