CropImage.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../../class/connect.php");
  4. require("../../../class/db_sql.php");
  5. require("../../../class/functions.php");
  6. require("../../../data/dbcache/class.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=2;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. $enews=$_POST['enews'];
  20. if(empty($enews))
  21. {
  22. $enews=$_GET['enews'];
  23. }
  24. if($enews)
  25. {
  26. hCheckEcmsRHash();
  27. }
  28. //裁剪图片
  29. if($enews=='DoCropImage')
  30. {
  31. if($public_r['phpmode'])
  32. {
  33. include("../../../class/ftp.php");
  34. $incftp=1;
  35. }
  36. include('copyimgfun.php');
  37. DoCropImage($_POST,$logininid,$loginin);
  38. }
  39. $fileid=(int)$_GET['fileid'];
  40. $filepass=(int)$_GET['filepass'];
  41. $classid=(int)$_GET['classid'];
  42. $infoid=(int)$_GET['infoid'];
  43. $modtype=(int)$_GET['modtype'];
  44. if(empty($fileid))
  45. {
  46. printerror('NotCropImage','history.go(-1)');
  47. }
  48. $fstb=0;
  49. if(empty($modtype))
  50. {
  51. $fstb=GetInfoTranFstb($classid,$infoid,0);
  52. }
  53. $filer=$empire->fetch1("select fileid,path,filename,classid,fpath,no from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid'");
  54. if(empty($filer['fileid']))
  55. {
  56. printerror('NotCropImage','history.go(-1)');
  57. }
  58. $path=$filer['path']?$filer['path'].'/':$filer['path'];
  59. $fspath=ReturnFileSavePath($filer['classid'],$filer['fpath']);
  60. $big_image_name=eReturnEcmsMainPortPath().$fspath['filepath'].$path.$filer['filename'];//moreport
  61. $imgurl=$fspath['fileurl'].$path.$filer['filename'];
  62. if(!file_exists($big_image_name))
  63. {
  64. printerror('NotCropImage','history.go(-1)');
  65. }
  66. $filetype=GetFiletype($filer['filename']);//取得文件类型
  67. if(!strstr($ecms_config['sets']['tranpicturetype'],','.$filetype.','))
  68. {
  69. printerror('CropImageFiletypeFail','history.go(-1)');
  70. }
  71. db_close();
  72. $empire=null;
  73. ?>
  74. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  75. <html>
  76. <head>
  77. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  78. <title>裁剪图片:<?=$filer['no']?> (<?=$filer['filename']?>)</title>
  79. <link href="../../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  80. <script src="js/jquery.min.js"></script>
  81. <script src="js/jquery.Jcrop.js"></script>
  82. <link rel="stylesheet" href="css/jquery.Jcrop.css" type="text/css" />
  83. <script language="Javascript">
  84. // Remember to invoke within jQuery(window).load(...)
  85. // If you don't, Jcrop may not initialize properly
  86. jQuery(document).ready(function(){
  87. jQuery('#cropbox').Jcrop({
  88. onChange: showCoords,
  89. onSelect: showCoords
  90. });
  91. });
  92. // Our simple event handler, called from onChange and onSelect
  93. // event handlers, as per the Jcrop invocation above
  94. function showCoords(c)
  95. {
  96. jQuery('#pic_x').val(c.x);
  97. jQuery('#pic_y').val(c.y);
  98. jQuery('#x2').val(c.x2);
  99. jQuery('#y2').val(c.y2);
  100. jQuery('#pic_w').val(c.w);
  101. jQuery('#pic_h').val(c.h);
  102. };
  103. </script>
  104. </head>
  105. <body>
  106. <form name="cropimgform" method="post" action="CropImage.php">
  107. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  108. <?=$ecms_hashur['form']?>
  109. <tr>
  110. <td height="30">裁剪图片大小:宽
  111. <input name="pic_w" type="text" id="pic_w" value="0" size="6">
  112. ×高 <input name="pic_h" type="text" id="pic_h" value="0" size="6">
  113. <input name="doing" type="checkbox" id="doing" value="1" checked>
  114. 保留原图 <input type="submit" name="Submit" value="裁剪图片">
  115. <input name="enews" type="hidden" id="enews" value="DoCropImage">
  116. <input name="pic_x" type="hidden" id="pic_x" value="0">
  117. <input name="pic_y" type="hidden" id="pic_y" value="0">
  118. <input name="fileid" type="hidden" id="fileid" value="<?=$fileid?>">
  119. <input name="filepass" type="hidden" id="filepass" value="<?=$filepass?>">
  120. <input name="classid" type="hidden" id="classid" value="<?=$classid?>">
  121. <input name="infoid" type="hidden" id="infoid" value="<?=$infoid?>">
  122. <input name="modtype" type="hidden" id="modtype" value="<?=$modtype?>">
  123. <input type="hidden" id="x2" name="x2" />
  124. <input type="hidden" id="y2" name="y2" />
  125. </td>
  126. </tr>
  127. <tr>
  128. <td height="25" bgcolor="#FFFFFF"><img src="<?=$imgurl?>" border="0" id="cropbox"></td>
  129. </tr>
  130. </table>
  131. </form>
  132. </body>
  133. </html>