"50x",
"2000" => "20x",
"500" => "5x",
"200" => "2x",
"100" => $zmSlangReal,
"50" => "1/2x",
);
$scales = array(
"400" => "4x",
"300" => "3x",
"200" => "2x",
"150" => "1.5x",
"100" => $zmSlangActual,
"75" => "3/4x",
"50" => "1/2x",
"33" => "1/3x",
"25" => "1/4x",
);
switch ( $bandwidth )
{
case "phone" : // Very incomplete at present
{
define( "ZM_WEB_DEFAULT_RATE", ZM_WEB_P_DEFAULT_RATE ); // What the default replay rate factor applied to 'event' views is (%)
define( "ZM_WEB_SCALE_THUMBS", ZM_WEB_P_SCALE_THUMBS ); // Image scaling for thumbnails, bandwidth versus cpu in rescaling
break;
}
}
function getDeviceScale( $width, $height, $divisor=1 )
{
global $device;
$device_width = (isset($device)&&!empty($device['width']))?$device['width']:DEVICE_WIDTH;
$device_height = (isset($device)&&!empty($device['height']))?$device['height']:DEVICE_HEIGHT;
// Allow for margins etc
$device_width -= 2;
$device_height -= 2;
$width_scale = ($device_width*SCALE_BASE)/$width;
$height_scale = ($device_height*SCALE_BASE)/$height;
$scale = (int)(($width_scale<$height_scale)?$width_scale:$height_scale);
if ( divisor != 1 )
$scale = (int)($scale/$divisor);
return( $scale );
}
?>