Lines Matching refs:to_h
1911 * @param int $to_h desired height
1914 function media_resize_imageIM($ext, $from, $from_w, $from_h, $to, $to_w, $to_h) argument
1923 $cmd .= ' -resize ' . $to_w . 'x' . $to_h . '!';
1945 * @param int $to_h desired height
1951 function media_crop_imageIM($ext, $from, $from_w, $from_h, $to, $to_w, $to_h, $ofs_x, $ofs_y) argument
1961 $cmd .= ' -crop ' . $to_w . 'x' . $to_h . '+' . $ofs_x . '+' . $ofs_y;
1984 * @param int $to_h desired height
1990 function media_resize_imageGD($ext, $from, $from_w, $from_h, $to, $to_w, $to_h, $ofs_x = 0, $ofs_y … argument
1998 if (!is_mem_available(($from_w * $from_h * 4) + ($to_w * $to_h * 4))) {
2018 $newimg = @imagecreatetruecolor($to_w, $to_h);
2020 if (!$newimg) $newimg = @imagecreate($to_w, $to_h);
2058 … if (!@imagecopyresampled($newimg, $image, 0, 0, $ofs_x, $ofs_y, $to_w, $to_h, $from_w, $from_h)) {
2059 imagecopyresized($newimg, $image, 0, 0, $ofs_x, $ofs_y, $to_w, $to_h, $from_w, $from_h);
2062 imagecopyresized($newimg, $image, 0, 0, $ofs_x, $ofs_y, $to_w, $to_h, $from_w, $from_h);