Lines Matching defs:crop
1778 * Resizes or crop the given image to the given size
1786 * @param bool $crop should a center crop be used?
1789 function media_mod_image($file, $ext, $w, $h = 0, $crop = false)
1796 $operation = $crop ? 'crop' : 'resize';
1803 $cache = new CacheImageMod($file, $w, $h, $ext, $crop);
1860 * @param int $w resize/crop width
1861 * @param int $h resize/crop height
1997 * crop images using external ImageMagick convert program
2008 * @param int $ofs_x offset of crop centre
2009 * @param int $ofs_y offset of crop centre
2023 $cmd .= ' -crop ' . $to_w . 'x' . $to_h . '+' . $ofs_x . '+' . $ofs_y;
2035 * resize or crop images using PHP's libGD support
2047 * @param int $ofs_x offset of crop centre
2048 * @param int $ofs_y offset of crop centre