这里是新的,并且非常适合编写php脚本等。
我有一些天气IP摄像机可以产生高分辨率(3MP)图像,到目前为止我已经提出了下面的脚本来减小图像的大小,还可以选择通过c =“last ip”选择哪个摄像机八位”。另外一些相机来自不同的制造商,因此image.jpg的路径将是不同的。 一个例子是http://www.example.com/WeatherCam.php?c=2&w=800&h=600,它将从http://10.x.x.2/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);
?>
答案 0 :(得分: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
然而,这只是一个偏好问题。