| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 | <?phpdefine('EmpireCMSAdmin','1');require("../../../class/connect.php");require("../../../class/db_sql.php");require("../../../class/functions.php");require("../../../data/dbcache/class.php");$link=db_connect();$empire=new mysqlquery();$editor=2;//验证用户$lur=is_login();$logininid=$lur['userid'];$loginin=$lur['username'];$loginrnd=$lur['rnd'];$loginlevel=$lur['groupid'];$loginadminstyleid=$lur['adminstyleid'];//ehash$ecms_hashur=hReturnEcmsHashStrAll();$enews=$_POST['enews'];if(empty($enews)){	$enews=$_GET['enews'];}if($enews){	hCheckEcmsRHash();}//裁剪图片if($enews=='DoCropImage'){	if($public_r['phpmode'])	{		include("../../../class/ftp.php");		$incftp=1;	}	include('copyimgfun.php');	DoCropImage($_POST,$logininid,$loginin);}$fileid=(int)$_GET['fileid'];$filepass=(int)$_GET['filepass'];$classid=(int)$_GET['classid'];$infoid=(int)$_GET['infoid'];$modtype=(int)$_GET['modtype'];if(empty($fileid)){	printerror('NotCropImage','history.go(-1)');}$fstb=0;if(empty($modtype)){	$fstb=GetInfoTranFstb($classid,$infoid,0);}$filer=$empire->fetch1("select fileid,path,filename,classid,fpath,no from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid'");if(empty($filer['fileid'])){	printerror('NotCropImage','history.go(-1)');}$path=$filer['path']?$filer['path'].'/':$filer['path'];$fspath=ReturnFileSavePath($filer['classid'],$filer['fpath']);$big_image_name=eReturnEcmsMainPortPath().$fspath['filepath'].$path.$filer['filename'];//moreport$imgurl=$fspath['fileurl'].$path.$filer['filename'];if(!file_exists($big_image_name)){	printerror('NotCropImage','history.go(-1)');}$filetype=GetFiletype($filer['filename']);//取得文件类型if(!strstr($ecms_config['sets']['tranpicturetype'],','.$filetype.',')){	printerror('CropImageFiletypeFail','history.go(-1)');}db_close();$empire=null;?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>裁剪图片:<?=$filer['no']?> (<?=$filer['filename']?>)</title><link href="../../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css"><script src="js/jquery.min.js"></script><script src="js/jquery.Jcrop.js"></script><link rel="stylesheet" href="css/jquery.Jcrop.css" type="text/css" />		<script language="Javascript">			// Remember to invoke within jQuery(window).load(...)			// If you don't, Jcrop may not initialize properly			jQuery(document).ready(function(){				jQuery('#cropbox').Jcrop({					onChange: showCoords,					onSelect: showCoords				});			});			// Our simple event handler, called from onChange and onSelect			// event handlers, as per the Jcrop invocation above			function showCoords(c)			{				jQuery('#pic_x').val(c.x);				jQuery('#pic_y').val(c.y);				jQuery('#x2').val(c.x2);				jQuery('#y2').val(c.y2);				jQuery('#pic_w').val(c.w);				jQuery('#pic_h').val(c.h);			};		</script></head><body><form name="cropimgform" method="post" action="CropImage.php">  <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">  <?=$ecms_hashur['form']?>    <tr>       <td height="30">裁剪图片大小:宽         <input name="pic_w" type="text" id="pic_w" value="0" size="6">        ×高 <input name="pic_h" type="text" id="pic_h" value="0" size="6">        ,         <input name="doing" type="checkbox" id="doing" value="1" checked>        保留原图 <input type="submit" name="Submit" value="裁剪图片">        <input name="enews" type="hidden" id="enews" value="DoCropImage">        <input name="pic_x" type="hidden" id="pic_x" value="0">        <input name="pic_y" type="hidden" id="pic_y" value="0">        <input name="fileid" type="hidden" id="fileid" value="<?=$fileid?>">		<input name="filepass" type="hidden" id="filepass" value="<?=$filepass?>">		<input name="classid" type="hidden" id="classid" value="<?=$classid?>">		<input name="infoid" type="hidden" id="infoid" value="<?=$infoid?>">		<input name="modtype" type="hidden" id="modtype" value="<?=$modtype?>">		<input type="hidden" id="x2" name="x2" />		<input type="hidden" id="y2" name="y2" />      </td>    </tr>    <tr>       <td height="25" bgcolor="#FFFFFF"><img src="<?=$imgurl?>" border="0" id="cropbox"></td>    </tr>  </table></form></body></html>
 |