2

这里是新的,对编写 php 脚本等很新。

我有一些产生高分辨率(3MP)图像的天气 IP 摄像机,到目前为止,我已经提出了以下脚本来减小图像的大小,并通过 c =“last ip octet”选择要选择的摄像机。此外,一些相机来自不同的制造商,因此 image.jpg 的路径会有所不同。一个例子是http://www.example.com/WeatherCam.php?c=2&w=800&h=600它将从http://10.xx2/image.jpg(相机 2)中提取图像然后缩小它到 800x600 像素。

<?php  
// Get Camera Number
 if(isset($_GET['c'])){
  $num=$_GET['c'];
}

// The image from camera
$filename = "http://10.99.99.".$num."/image.jpg"; 

// Set a maximum height and width  
$width = 2048;  
$height = 1536;  

 if(isset($_GET['w'])){
  $width=$_GET['w'];
}
 if(isset($_GET['h'])){
   $height=$_GET['h'];
}

// Set Content type to jpeg 
header('Content-type: image/jpeg');  

list($width_orig, $height_orig) = getimagesize($filename);  
$ratio_orig = $width_orig/$height_orig;  

if ($width/$height > $ratio_orig) {  
   $width = $height*$ratio_orig;  
} else {  
   $height = $width/$ratio_orig;  
}  

// Create new images  
$image_p = imagecreatetruecolor($width, $height);
$sourceimage = imagecreatefromjpeg($filename);  
imagecopyresampled($image_p, $sourceimage, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);  

// Output Images & Cleanup
imagejpeg($image_p, null, 100);
imagedestroy($sourceimage);
imagedestroy($image_p);
?>  

您能否帮帮我,以便我可以使用数组或类似方法来选择要使用的相机,而不是我在下面做的粗略方式?我正在考虑以下方面:

array(
  'id' => array(
    1 => http://10.x.x.1/image.jpg,
    2 => http://10.x.x.2/image.jpg,
    3 => http://10.x.x.3/jpg/image.jpg
  )

这主要是为了让我可以完全控制我希望从 php 脚本访问哪些摄像机,而不是选择同一子网上的任何其他 ip 摄像机。

我想要它,所以如果在 URL 中未指定 id,它将默认为相机 1 或其他图像,即 imagenotfound.jpg。

编辑: 下面是我提出的新代码,任何人都可以看到任何问题?到目前为止,它似乎运作良好。

<?php  
// Get Filename from URL  
if (isset($_GET['ID']) AND $_GET['ID'] == 'null') {
    $filename = 'no-image.jpg';
}
switch ((isset($_GET['ID']) ? $_GET['ID'] : '')) {
    case '1':
        $filename = "http://10.x.x.1/jpg/image.jpg";
        break;
    case '2':
        $filename = "http://10.x.x.2/jpg/image.jpg";
        break;
    case '3':
        $filename = "http://10.x.x.1/image.jpg";
        break;
    default:
        $filename = 'no-image.jpg';
        break;
}

// Get Image Quality from URL  
if (isset($_GET['q']) AND $_GET['q'] == 'null') {
    $quality = '100';
}
switch ((isset($_GET['q']) ? $_GET['q'] : '')) {
    case '1':
        $quality = "100";
        break;
    case '2':
        $quality = "80";
        break;
    case '3':
        $quality = "75";
        break;
    default:
        $quality = '100';
        break;
}

// Get Image Width & Height from URL  
if (isset($_GET['s']) AND $_GET['s'] == 'null') {
        $width = "800";
        $height = "600";
}
switch ((isset($_GET['s']) ? $_GET['s'] : '')) {
    case '1':
        $width = "800";
        $height = "600";
        break;
    case '2':
        $width = "1024";
        $height = "768";
        break;
    case '3':
        $width = "704";
        $height = "576";
        break;
    case '4':
        $width = "2048";
        $height = "1536";
        break;
    default:
        $width = "800";
        $height = "600";
        break;
}

// Content type  
header('Content-type: image/jpeg');  

// Get new dimensions  
list($width_orig, $height_orig) = getimagesize($filename);  

$ratio_orig = $width_orig/$height_orig;  

if ($width/$height > $ratio_orig) {  
   $width = $height*$ratio_orig;  
} else {  
   $height = $width/$ratio_orig;  
}  

// Resample  
$image_p = imagecreatetruecolor($width, $height);
$sourceimage = imagecreatefromjpeg($filename);  
imagecopyresampled($image_p, $sourceimage, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);  

// Output  
imagejpeg($image_p, null, $quality);
imagedestroy($sourceimage);
imagedestroy($image_p);
?> 
4

1 回答 1

0

我会亲自编写以下代码段:

// Get Image Quality from URL  
if (isset($_GET['q']) AND $_GET['q'] == 'null') {
    $quality = '100';
}
switch ((isset($_GET['q']) ? $_GET['q'] : '')) {
    case '1':
        $quality = "100";
        break;
    case '2':
        $quality = "80";
        break;
    case '3':
        $quality = "75";
        break;
    default:
        $quality = '100';
        break;
}

这样:

$quality_list = array(
    1 => 100,
    2 => 80,
    3 => 75
);

$quality = (isset($_GET['q']) && isset($quality_list[$_GET['q']]))  
       ? $quality_list[$_GET['q']]
       : 100;  // default quality

但是,这只是偏好问题。

于 2013-10-15T18:27:30.213 回答