ws
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 16 Feb 2010 00:41:57 +0000 (17:41 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 16 Feb 2010 00:41:57 +0000 (17:41 -0700)
framework/Image/lib/Horde/Image/Base.php
framework/Image/lib/Horde/Image/Im.php

index 419a9fb..0e97750 100644 (file)
@@ -96,7 +96,7 @@ abstract class Horde_Image_Base Implements Iterator
      * @param array
      */
      protected $_context;
-     
+
     /**
      * Constructor.
      *
@@ -106,7 +106,7 @@ abstract class Horde_Image_Base Implements Iterator
     {
         $this->_params = $params;
         $this->_context = $context;
-        
+
         if (empty($context['tmpdir'])) {
             throw new InvalidArgumentException('A path to a temporary directory is required.');
         }
@@ -442,5 +442,5 @@ abstract class Horde_Image_Base Implements Iterator
      * @return integer
      */
     abstract function getImagePageCount();
-    
+
 }
index 5ecf27a..2ac9435 100644 (file)
@@ -29,7 +29,7 @@ class Horde_Image_Im extends Horde_Image_Base
                                      'canvas',
                                      'multipage',
                                      'pdf');
-    
+
     /**
      * Operations to be performed before the source filename is specified on the
      * command line.
@@ -68,7 +68,7 @@ class Horde_Image_Im extends Horde_Image_Base
      * @string
      */
     protected $_identify;
-    
+
     /**
      * Cache the number of image pages
      *
@@ -649,7 +649,7 @@ class Horde_Image_Im extends Horde_Image_Base
         }
         $rawImage = $this->_raw(true, $index, true);
         $image = new Horde_Image_Im(array('data' => $rawImage), $this->_context);
-        
+
         return $image;
     }
 
@@ -680,7 +680,7 @@ class Horde_Image_Im extends Horde_Image_Base
             $this->_logErr(sprintf("Error running command: %s", $cmd . "\n" . implode("\n", $output)));
         }
         unlink($filename);
-        
+
         return $output;
     }
 }