Просмотр файла downimg.php

Размер файла: 4.05Kb
  1. <?php
  2. #----00--00----------------------------------#
  3. #----00---000----000000-----000000-#
  4. #----00---0000--00----00----00---00--#
  5. #----00---0000--00-----------00---------#
  6. #----00---0000--000000----00000--#
  7. #----00---000---00-----------00---------#
  8. #----00--00-----00---00-----00---------#
  9. #----0000-------000000----00--------#
  10. #################################################
  11. ## W@P-MOTOR 16 - 17 DOWNLOAD CENTER MOD Def ##
  12. ## Дата выхода 5 февраля 2008 г. ##
  13. ## Авторы: XsErG, VantuZ, Def ##
  14. ## Связь: http://wapruk.ru ##
  15. #################################################
  16. include ("inc/func.inc");
  17. require ("inc/conf.inc");
  18.  
  19. extract($HTTP_GET_VARS);
  20. extract($HTTP_POST_VARS);
  21. $time=time();
  22. //////////////////////////запись количества скачиваний//////////////////////////////
  23. if (@is_file("files$did/$im")){
  24. $dik=str_replace("/", "", $did);
  25. if (@is_file("baze/$dik.baz")){
  26. $fn=@file("baze/$dik.baz");
  27. $fp=@fopen("baze/$dik.baz","a+");
  28. flock ($fp,LOCK_EX);
  29. ftruncate ($fp,0);
  30. foreach ($fn as $n=>$f){
  31. $data = explode("|",$fn[$n]);
  32. if ($data[0]==$id and $data[11]=="$did/$im"){$kol=$data[1]+1;
  33. $zap="$data[0]|$kol|$data[2]|$data[3]|$data[4]|$time|$data[6]|$data[7]|$data[8]|$data[9]|$data[10]|$data[11]|\r\n";
  34. fputs($fp,"$zap");}
  35. else{fputs($fp,$fn[$n]);}
  36. fflush ($fp);
  37. }
  38. flock ($fp,LOCK_UN);
  39. fclose($fp);
  40. @chmod("baze/$dik.baz", 0666);
  41. }}
  42.  
  43. $image = check_fulls(@$_GET['im']);
  44. $did = check_fulls(@$_GET['did']);
  45. $types = array(1 => "gif", 2 => "jpeg", 3 => "png", 4 => "jpg");
  46. $destination = $did.'/small_'.$image;
  47. $image = "files".$did.'/'.$image;
  48.  
  49. $neww = (@$_GET['neww']);
  50. $newh = (@$_GET['newh']);
  51.  
  52. if ($neww == '' && $newh == ''){ $neww = 60; $newh = 60;}
  53.  
  54. $new_w = isset($_GET['w']) ? (int) $_GET['w'] : $neww;
  55. $new_h = isset($_GET['h']) ? (int) $_GET['h'] : $newh;
  56. if ($image_info = getimagesize($image))
  57. {
  58. $image_create_handle = "imagecreatefrom".$types[$image_info[2]];
  59. if (!$im = @$image_create_handle($image)) exit;
  60. $neww = imagesx($im);
  61. $newh = imagesy($im);
  62. $ratio = $neww/$new_w;
  63. $w_dest = round($neww/$ratio);
  64. $h_dest = round($newh/$ratio);
  65. $dest = imagecreatetruecolor($w_dest,$h_dest);
  66. imagecopyresized($dest, $im, 0, 0, 0, 0, $w_dest, $h_dest, $neww, $newh);
  67. if ($im_wd == 1)
  68. {
  69. // вывод текста
  70. // определяем координаты вывода текста
  71. $size = &$im_ts; // размер шрифта
  72. $x_text = $w_dest-imagefontwidth($size)*strlen($im_title)-3;
  73. $y_text = $h_dest-imagefontheight($size)-3;
  74. // определяем каким цветом на каком фоне выводить текст
  75. $white = imagecolorallocate($dest, 255, 255, 255);
  76. $black = imagecolorallocate($dest, 0, 0, 0);
  77. $gray = imagecolorallocate($dest, 127, 127, 127);
  78. if (imagecolorat($dest,$x_text,$y_text)>$gray) $color = $black;
  79. if (imagecolorat($dest,$x_text,$y_text)<$gray) $color = $white;
  80. // выводим текст
  81. imagestring($dest, $size, $x_text-1, $y_text-1, $im_title, $white-$color);
  82. imagestring($dest, $size, $x_text+1, $y_text+1, $im_title, $white-$color);
  83. imagestring($dest, $size, $x_text+1, $y_text-1, $im_title, $white-$color);
  84. imagestring($dest, $size, $x_text-1, $y_text+1, $im_title, $white-$color);
  85. imagestring($dest, $size, $x_text-1, $y_text, $im_title, $white-$color);
  86. imagestring($dest, $size, $x_text+1, $y_text, $im_title, $white-$color);
  87. imagestring($dest, $size, $x_text, $y_text-1, $im_title, $white-$color);
  88. imagestring($dest, $size, $x_text, $y_text+1, $im_title, $white-$color);
  89. imagestring($dest, $size, $x_text, $y_text, $im_title, $color);
  90. }
  91. header("Content-Type: image/jpeg");
  92. imagejpeg($dest);
  93. imagedestroy($dest);
  94. imagedestroy($im);
  95. }else{ echo 'Error';}
  96.  
  97. ?>