Changeset 13426 for trunk/admin


Ignore:
Timestamp:
Feb 28, 2012, 10:18:03 PM (12 years ago)
Author:
rvelices
Message:
  • derivative fix floating point rounding errors for certain sizes
  • increase derivative size for which metadata is kept
  • imagick use 4:2:2 chroma subsampling (reduce file size by 20-30% with "almost" no human perception)
  • dont show mobile theme links if there is no mobile theme installed
  • mobile theme favicon removed because 404
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/image.class.php

    r13115 r13426  
    459459  function write($destination_filepath)
    460460  {
     461    // use 4:2:2 chroma subsampling (reduce file size by 20-30% with "almost" no human perception)
     462    $this->image->setSamplingFactors( array(2,1) );
    461463    return $this->image->writeImage($destination_filepath);
    462464  }
Note: See TracChangeset for help on using the changeset viewer.