copyimgfun.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. //裁剪图片
  3. function DoCropImage($add,$userid,$username){
  4. global $empire,$dbtbpre,$public_r,$class_r,$ecms_config,$efileftp_fr,$efileftp_dr;
  5. //参数处理
  6. $pic_x=(int)$add['pic_x'];
  7. $pic_y=(int)$add['pic_y'];
  8. $pic_w=(int)$add['pic_w'];
  9. $pic_h=(int)$add['pic_h'];
  10. $doing=(int)$add['doing'];
  11. $fileid=(int)$add['fileid'];
  12. $filepass=(int)$add['filepass'];
  13. $classid=(int)$add['classid'];
  14. $infoid=(int)$add['infoid'];
  15. $modtype=(int)$add['modtype'];
  16. $fstb=0;
  17. if(empty($modtype))
  18. {
  19. $fstb=GetInfoTranFstb($classid,$infoid,0);
  20. }
  21. //取得文件地址
  22. if(empty($fileid))
  23. {
  24. printerror('NotCropImage','history.go(-1)');
  25. }
  26. $filer=$empire->fetch1("select fileid,path,filename,classid,fpath,no from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid'");
  27. if(empty($filer['fileid']))
  28. {
  29. printerror('NotCropImage','history.go(-1)');
  30. }
  31. $path=$filer['path']?$filer['path'].'/':$filer['path'];
  32. $fspath=ReturnFileSavePath($filer['classid'],$filer['fpath']);
  33. $big_image_name=eReturnEcmsMainPortPath().$fspath['filepath'].$path.$filer['filename'];//moreport
  34. if(!file_exists($big_image_name))
  35. {
  36. printerror('NotCropImage','history.go(-1)');
  37. }
  38. $filetype=GetFiletype($filer['filename']);//取得文件类型
  39. if(!strstr($ecms_config['sets']['tranpicturetype'],','.$filetype.','))
  40. {
  41. printerror('CropImageFiletypeFail','history.go(-1)');
  42. }
  43. //目标图片
  44. $new_datepath=FormatFilePath($filer['classid'],'',0);
  45. $new_path=$new_datepath?$new_datepath.'/':$new_datepath;
  46. $new_insertfile=ReturnDoTranFilename($filer['filename'],0);
  47. $new_fspath=ReturnFileSavePath($filer['classid']);
  48. $new_savepath=eReturnEcmsMainPortPath().$new_fspath['filepath'].$new_path;//moreport
  49. $new_name=$new_savepath.$new_insertfile;
  50. //处理图片
  51. $returnr['file']='';
  52. $returnr['filetype']='';
  53. if($temp_img_type = @getimagesize($big_image_name)) {preg_match('/\/([a-z]+)$/i', $temp_img_type[mime], $tpn); $img_type = $tpn[1];}
  54. else {preg_match('/\.([a-z]+)$/i', $big_image_name, $tpn); $img_type = $tpn[1];}
  55. $all_type = array(
  56. "jpg" => array("create"=>"ImageCreateFromjpeg", "output"=>"imagejpeg" , "exn"=>".jpg"),
  57. "gif" => array("create"=>"ImageCreateFromGIF" , "output"=>"imagegif" , "exn"=>".gif"),
  58. "jpeg" => array("create"=>"ImageCreateFromjpeg", "output"=>"imagejpeg" , "exn"=>".jpg"),
  59. "png" => array("create"=>"imagecreatefrompng" , "output"=>"imagepng" , "exn"=>".png"),
  60. "wbmp" => array("create"=>"imagecreatefromwbmp", "output"=>"image2wbmp" , "exn"=>".wbmp")
  61. );
  62. $func_create = $all_type[$img_type]['create'];
  63. if(empty($func_create) or !function_exists($func_create))
  64. {
  65. printerror('CropImageFiletypeFail','history.go(-1)');
  66. }
  67. //输出
  68. $func_output = $all_type[$img_type]['output'];
  69. $func_exname = $all_type[$img_type]['exn'];
  70. if(($func_exname=='.gif'||$func_exname=='.png'||$func_exname=='.wbmp')&&!function_exists($func_output))
  71. {
  72. $func_output='imagejpeg';
  73. $func_exname='.jpg';
  74. }
  75. $big_image = $func_create($big_image_name);
  76. $big_width = imagesx($big_image);
  77. $big_height = imagesy($big_image);
  78. if(!$big_width||!$big_height||$big_width<10||$big_height<10)
  79. {
  80. printerror('CropImageFilesizeFail','history.go(-1)');
  81. }
  82. if(function_exists("imagecopyresampled"))
  83. {
  84. $temp_image=imagecreatetruecolor($pic_w,$pic_h);
  85. imagecopyresampled($temp_image, $big_image, 0, 0, $pic_x, $pic_y, $pic_w, $pic_h, $pic_w, $pic_h);
  86. }
  87. else
  88. {
  89. $temp_image=imagecreate($pic_w,$pic_h);
  90. imagecopyresized($temp_image, $big_image, 0, 0, $pic_x, $pic_y, $pic_w, $pic_h, $pic_w, $pic_h);
  91. }
  92. $func_output($temp_image, $new_name.$func_exname);
  93. ImageDestroy($big_image);
  94. ImageDestroy($temp_image);
  95. $insert_file=$new_name.$func_exname;
  96. $insert_filename=$new_insertfile.$func_exname;
  97. if(file_exists($insert_file))
  98. {
  99. if(!$doing)
  100. {
  101. $empire->query("delete from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid'");
  102. DelFiletext($big_image_name);
  103. //FileServer
  104. if($public_r['openfileserver'])
  105. {
  106. $efileftp_dr[]=$big_image_name;
  107. }
  108. }
  109. //写入数据库
  110. $no='[CropImg]'.$filer['no'];
  111. $filesize=filesize($insert_file);
  112. $filesize=(int)$filesize;
  113. $classid=(int)$classid;
  114. $type=1;
  115. eInsertFileTable($insert_filename,$filesize,$new_datepath,$username,$classid,$no,$type,$filepass,$filepass,$public_r[fpath],0,$modtype,$fstb);
  116. //FileServer
  117. if($public_r['openfileserver'])
  118. {
  119. $efileftp_fr[]=$insert_file;
  120. }
  121. }
  122. echo"<script>opener.ReloadChangeFilePage();window.close();</script>";
  123. db_close();
  124. exit();
  125. }
  126. ?>