Changeset 9859 for extensions/external_ImageMagick/trunk/imagick.class.php
- Timestamp:
- Mar 26, 2011, 11:04:37 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/external_ImageMagick/trunk/imagick.class.php
r9856 r9859 131 131 132 132 $exec = $this->imagemagickdir.'convert'; 133 $exec .= ' '.realpath($this->source_path); 133 134 134 135 foreach ($this->commands as $command => $params) … … 141 142 } 142 143 143 $exec .= ' '.realpath($this->source_path);144 144 $exec .= ' '.realpath($this->tmp_path); 145 145 @exec($exec, $returnarray, $returnvalue); 146 146 @rename($this->tmp_path, $destination_filepath); 147 @chmod($destination_filepath, 0644); 147 148 } 148 149
Note: See TracChangeset
for help on using the changeset viewer.