Applied fixes from StyleCI

This commit is contained in:
vijaysebastian
2016-02-29 07:15:40 -05:00
committed by StyleCI Bot
parent 500a2d76f4
commit 56bc64132b
105 changed files with 256 additions and 454 deletions

View File

@@ -11,7 +11,7 @@
{
/**
* Executes the auto-crop operation on the $img.
*
*
* @param WideImage_Image $img
* @param int $rgb_threshold The difference in RGB from $base_color
* @param int $pixel_cutoff The number of pixels on each border that must be over $rgb_threshold

View File

@@ -6,7 +6,7 @@
/**
* CopyChannelsPalette operation class.
*
*
* This operation is intended to be used on palette images
*/
class WideImage_Operation_CopyChannelsPalette

View File

@@ -6,14 +6,14 @@
/**
* CopyChannelsTrueColor operation class.
*
*
* Used to perform CopyChannels operation on truecolor images
*/
class WideImage_Operation_CopyChannelsTrueColor
{
/**
* Returns an image with only specified channels copied.
*
*
* @param WideImage_Image $img
* @param array $channels
*

View File

@@ -11,7 +11,7 @@
{
/**
* Returns an image with a resized canvas.
*
*
* The image is filled with $color. Use $scale to determine, when to resize.
*
* @param WideImage_Image $img

View File

@@ -6,7 +6,7 @@
/**
* Unsharp filter.
*
*
* This filter was taken from http://vikjavev.no/computing/ump.php,
* the original author Torstein Hønsi. Adapted to fit better within
* the Wideimage package.