Changeset 28199
- Timestamp:
- Apr 16, 2014, 7:15:16 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/include/image.class.php
r26461 r28199 548 548 function crop($width, $height, $x, $y) 549 549 { 550 $this->width = $width; 551 $this->height = $height; 552 550 553 $this->add_command('crop', $width.'x'.$height.'+'.$x.'+'.$y); 551 554 return true; … … 584 587 function resize($width, $height) 585 588 { 589 $this->width = $width; 590 $this->height = $height; 591 586 592 $this->add_command('filter', 'Lanczos'); 587 593 $this->add_command('resize', $width.'x'.$height.'!');
Note: See TracChangeset
for help on using the changeset viewer.