?? image.php
字號:
<?
require_once(dirname(__FILE__)."/../../../dialog/config.php");
require_once(dirname(__FILE__)."/../../../inc_photograph.php");
if(empty($dopost)) $dopost="";
if(empty($imgwidthValue)) $imgwidthValue=400;
if(empty($imgheightValue)) $imgheightValue=300;
if(empty($urlValue)) $urlValue="";
if(empty($imgsrcValue)) $imgsrcValue="";
if(empty($imgurl)) $imgurl="";
if(empty($dd)) $dd="";
if($dopost=="upload")
{
if(empty($imgfile)) $imgfile="";
if(!is_uploaded_file($imgfile)){
ShowMsg("你沒有選擇上傳的文件!","-1");
exit();
}
if(ereg("^text",$imgfile_type)){
ShowMsg("不允許文本類型附件!","-1");
exit();
}
$sparr = Array("image/pjpeg","image/jpeg","image/gif","image/png");
$imgfile_type = strtolower(trim($imgfile_type));
if(!in_array($imgfile_type,$sparr)){
ShowMsg("上傳的圖片格式錯誤,請使用JPEG、GIF、PNG格式的其中一種!","-1");
exit();
}
$y = substr(strftime("%Y",time()),2,2).strftime("%m",time());
$filename = $cuserLogin->getUserID()."_".strftime("%d%H%M%S",time());
if(!is_dir($cfg_basedir.$cfg_image_dir."/$y")) mkdir($cfg_basedir.$cfg_image_dir."/$y",0777);
$fs = explode(".",$imgfile_name);
$bfilename = $cfg_image_dir."/$y/".$filename.".".$fs[count($fs)-1];
$litfilename = $cfg_image_dir."/$y/".$filename."_lit.".$fs[count($fs)-1];
$fullfilename = $cfg_basedir.$bfilename;
$full_litfilename = $cfg_basedir.$litfilename;
if(file_exists($fullfilename)){
ShowMsg("本目錄已經存在同名的文件,請更改!","-1");
exit();
}
@move_uploaded_file($imgfile,$fullfilename);
if($dd=="yes")
{
copy($fullfilename,$full_litfilename);
ImageResize($full_litfilename,$w,$h);
$urlValue = $bfilename;
$imgsrcValue = $litfilename;
$sizes = getimagesize($full_litfilename,&$info);
}
else
{
$imgsrcValue = $bfilename;
$urlValue = $bfilename;
$sizes = getimagesize($fullfilename,&$info);
}
$imgwidthValue = $sizes[0];
$imgheightValue = $sizes[1];
$kkkimg = $urlValue;
}
if(empty($kkkimg)) $kkkimg="picview.gif";
?>
<HTML>
<HEAD>
<title>插入圖片</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
td{font-size:10pt;}
</style>
<script language=javascript>
var oEditor = window.parent.InnerDialogLoaded() ;
var oDOM = oEditor.FCK.EditorDocument ;
var FCK = oEditor.FCK;
function ImageOK()
{
var inImg,ialign,iurl,imgwidth,imgheight,ialt,isrc,iborder;
ialign = document.form1.ialign.value;
iborder = document.form1.border.value;
imgwidth = document.form1.imgwidth.value;
imgheight = document.form1.imgheight.value;
ialt = document.form1.alt.value;
isrc = document.form1.imgsrc.value;
iurl = document.form1.url.value;
if(ialign!=0) ialign = " align='"+ialign+"'";
inImg = "<img src='"+ isrc +"' width='"+ imgwidth;
inImg += "' height='"+ imgheight +"' border='"+ iborder +"' alt='"+ ialt +"'"+ialign+"/>";
if(iurl!="") inImg = "<a href='"+ iurl +"' target='_blank'>"+ inImg +"</a>\r\n";
//window.returnValue = inImg;
if(document.all) oDOM.selection.createRange().pasteHTML(inImg);
else FCK.InsertHtml(inImg);
window.close();
}
function SelectMedia(fname)
{
if(document.all){
var posLeft = window.event.clientY-100;
var posTop = window.event.clientX-400;
}
else{
var posLeft = 100;
var posTop = 100;
}
window.open("../../../dialog/select_images.php?f="+fname+"&imgstick=big", "popUpImgWin", "scrollbars=yes,resizable=yes,statebar=no,width=600,height=400,left="+posLeft+", top="+posTop);
}
function SeePic(imgid,fobj)
{
if(!fobj) return;
if(fobj.value != "" && fobj.value != null)
{
var cimg = document.getElementById(imgid);
if(cimg) cimg.src = fobj.value;
}
}
function UpdateImageInfo()
{
var imgsrc = document.form1.imgsrc.value;
if(imgsrc!="")
{
var imgObj = new Image();
imgObj.src = imgsrc;
document.form1.himgheight.value = imgObj.height;
document.form1.himgwidth.value = imgObj.width;
document.form1.imgheight.value = imgObj.height;
document.form1.imgwidth.value = imgObj.width;
}
}
function UpImgSizeH()
{
var ih = document.form1.himgheight.value;
var iw = document.form1.himgwidth.value;
var iih = document.form1.imgheight.value;
var iiw = document.form1.imgwidth.value;
if(ih!=iih && iih>0 && ih>0 && document.form1.autoresize.checked)
{
document.form1.imgwidth.value = Math.ceil(iiw * (iih/ih));
}
}
function UpImgSizeW()
{
var ih = document.form1.himgheight.value;
var iw = document.form1.himgwidth.value;
var iih = document.form1.imgheight.value;
var iiw = document.form1.imgwidth.value;
if(iw!=iiw && iiw>0 && iw>0 && document.form1.autoresize.checked)
{
document.form1.imgheight.value = Math.ceil(iih * (iiw/iw));
}
}
</script>
<link href="base.css" rel="stylesheet" type="text/css">
<base target="_self">
</HEAD>
<body bgcolor="#EBF6CD" leftmargin="4" topmargin="2">
<form enctype="multipart/form-data" name="form1" id="form1" method="post">
<input type="hidden" name="dopost" value="upload">
<input type="hidden" name="himgheight" value="<?=$imgheightValue?>">
<input type="hidden" name="himgwidth" value="<?=$imgwidthValue?>">
<table width="100%" border="0">
<tr height="20">
<td colspan="3">
<fieldset>
<legend>圖片屬性</legend>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="65" height="25" align="right">網址:</td>
<td colspan="2">
<input name="imgsrc" type="text" id="imgsrc" size="30" onChange="SeePic('picview',this);" value="<?=$imgsrcValue?>">
<input onClick="SelectMedia('form1.imgsrc');" type="button" name="selimg" value=" 瀏覽... " class="binput" style="width:80">
</td>
</tr>
<tr>
<td height="25" align="right">寬度:</td>
<td colspan="2" nowrap>
<input type="text" id="imgwidth" name="imgwidth" size="8" value="<?=$imgwidthValue?>" onChange="UpImgSizeW()">
高度:
<input name="imgheight" type="text" id="imgheight" size="8" value="<?=$imgheightValue?>" onChange="UpImgSizeH()">
<input type="button" name="Submit" value="原始" class="binput" style="width:40" onclick="UpdateImageInfo()">
<input name="autoresize" type="checkbox" id="autoresize" value="1" checked>
自適應</td>
</tr>
<tr>
<td height="25" align="right">邊框:</td>
<td colspan="2" nowrap><input name="border" type="text" id="border" size="4" value="0">
替代文字:
<input name="alt" type="text" id="alt" size="10"></td>
</tr>
<tr>
<td height="25" align="right">鏈接:</td>
<td width="166" nowrap><input name="url" type="text" id="url" size="30" value="<?=$urlValue?>"></td>
<td width="155" align="center" nowrap> </td>
</tr>
<tr>
<td height="25" align="right">對齊:</td>
<td nowrap><select name="ialign" id="ialign">
<option value="0" selected>默認</option>
<option value="right">右對齊</option>
<option value="center">中間</option>
<option value="left">左對齊</option>
<option value="top">頂端</option>
<option value="bottom">底部</option>
</select></td>
<td align="right" nowrap>
<input onClick="ImageOK();" type="button" name="Submit2" value=" 確定 " class="binput">
</td>
</tr>
</table>
</fieldset>
</td>
</tr>
<tr height="25">
<td colspan="3" nowrap> <fieldset>
<legend>上傳新圖片</legend>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr height="30">
<td align="right" nowrap> 新圖片:</td>
<td colspan="2" nowrap><input name="imgfile" type="file" id="imgfile" onChange="SeePic('picview',this);" style="height:22" class="binput">
<input type="submit" name="picSubmit" id="picSubmit" value=" 上 傳 " style="height:22" class="binput"></td>
</tr>
<tr height="30">
<td align="right" nowrap> 選 項:</td>
<td colspan="2" nowrap>
<input type="checkbox" name="dd" value="yes">生成縮略圖
縮略圖寬度
<input name="w" type="text" value="160" size="3">
縮略圖高度
<input name="h" type="text" value="120" size="3">
</td>
</tr>
</table>
</fieldset></td>
</tr>
<tr height="50">
<td height="140" align="right" nowrap>預覽區:</td>
<td height="140" colspan="2" nowrap>
<table width="150" height="120" border="0" cellpadding="1" cellspacing="1">
<tr>
<td align="center"><img name="picview" id="picview" src="<?=$kkkimg?>" width="160" height="120" alt="預覽圖片"></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</HTML>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -