Browse Source

patched bug/issue #24

pull/40/head
Savetheinternet 13 years ago
parent
commit
8b4f3c3754
  1. 3
      inc/image.php

3
inc/image.php

@ -163,7 +163,8 @@
return $this->image->destroy();
}
public function resize() {
$this->image = $this->original;
$this->image = $this->original->clone();
$this->image->scaleImage($this->width, $this->height, false);
}
}

Loading…
Cancel
Save