Просмотр файла engine/classes/file_screen.class.php

Размер файла: 4.68Kb
  1. <?php
  2. /*
  3. =============================================
  4. Движок: SHCMS Engine
  5. =============================================
  6. Название файла: Функция обработки скринов
  7. =============================================
  8. Official website: http://shcms.ru
  9. =============================================
  10. Данный код защищен авторскими правами
  11. =============================================
  12. */
  13. class screen {
  14. private $image_file;
  15. public $image;
  16. public $image_type;
  17. public $image_width;
  18. public $image_height;
  19. public function __construct($image_file) {
  20. $this->image_file=$image_file;
  21. $image_info = getimagesize($this->image_file);
  22. $this->image_width = $image_info[0];
  23. $this->image_height = $image_info[1];
  24. switch($image_info[2])
  25. {
  26. case 1: $this->image_type = 'gif'; break; //1: IMAGETYPE_GIF
  27. case 2: $this->image_type = 'jpeg'; break; //2: IMAGETYPE_JPEG
  28. case 3: $this->image_type = 'png'; break; //3: IMAGETYPE_PNG
  29. case 4: $this->image_type = 'swf'; break; //4: IMAGETYPE_SWF
  30. case 5: $this->image_type = 'psd'; break; //5: IMAGETYPE_PSD
  31. case 6: $this->image_type = 'bmp'; break; //6: IMAGETYPE_BMP
  32. case 7: $this->image_type = 'tiffi';break; //7: IMAGETYPE_TIFF_II (порядок байт intel)
  33. case 8: $this->image_type = 'tiffm';break; //8: IMAGETYPE_TIFF_MM (порядок байт motorola)
  34. case 9: $this->image_type = 'jpc'; break; //9: IMAGETYPE_JPC
  35. case 10: $this->image_type = 'jp2'; break; //10: IMAGETYPE_JP2
  36. case 11: $this->image_type = 'jpx'; break; //11: IMAGETYPE_JPX
  37. case 12: $this->image_type = 'jb2'; break; //12: IMAGETYPE_JB2
  38. case 13: $this->image_type = 'swc'; break; //13: IMAGETYPE_SWC
  39. case 14: $this->image_type = 'iff'; break; //14: IMAGETYPE_IFF
  40. case 15: $this->image_type = 'wbmp';break; //15: IMAGETYPE_WBMP
  41. case 16: $this->image_type = 'xbm'; break; //16: IMAGETYPE_XBM
  42. case 17: $this->image_type = 'ico'; break; //17: IMAGETYPE_ICO
  43. default: $this->image_type = ''; break;
  44. }
  45. $this->fotoimage();
  46. }
  47. private function fotoimage() {
  48. switch($this->image_type) {
  49. case 'gif': $this->image = imagecreatefromgif($this->image_file); break;
  50. case 'jpeg': $this->image = imagecreatefromjpeg($this->image_file); break;
  51. case 'png': $this->image = imagecreatefrompng($this->image_file); break;
  52. }
  53. }
  54. public function autoimageresize($new_w, $new_h) {
  55. $difference_w = 0;
  56. $difference_h = 0;
  57. if($this->image_width < $new_w && $this->image_height < $new_h) {
  58. $this->imageresize($this->image_width, $this->image_height);
  59. }
  60. else {
  61. if($this->image_width > $new_w) {
  62. $difference_w = $this->image_width - $new_w;
  63. }
  64. if($this->image_height > $new_h) {
  65. $difference_h = $this->image_height - $new_h;
  66. }
  67. if($difference_w > $difference_h) {
  68. $this->imageresizewidth($new_w);
  69. }
  70. elseif($difference_w < $difference_h) {
  71. $this->imageresizeheight($new_h);
  72. }
  73. else {
  74. $this->imageresize($new_w, $new_h);
  75. }
  76. }
  77. }
  78. public function percentimagereduce($percent) {
  79. $new_w = $this->image_width * $percent / 100;
  80. $new_h = $this->image_height * $percent / 100;
  81. $this->imageresize($new_w, $new_h);
  82. }
  83. public function imageresizewidth($new_w) {
  84. $new_h = $this->image_height * ($new_w / $this->image_width);
  85. $this->imageresize($new_w, $new_h);
  86. }
  87. public function imageresizeheight($new_h) {
  88. $new_w = $this->image_width * ($new_h / $this->image_height);
  89. $this->imageresize($new_w, $new_h);
  90. }
  91. public function imageresize($new_w, $new_h) {
  92. $new_image = imagecreatetruecolor($new_w, $new_h);
  93. imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $new_w, $new_h, $this->image_width, $this->image_height);
  94. $this->image_width = $new_w;
  95. $this->image_height = $new_h;
  96. $this->image = $new_image;
  97. }
  98. public function imagesave($image_type='jpeg', $image_file=NULL, $image_compress=100, $image_permiss='') {
  99. if($image_file==NULL) {
  100. switch($this->image_type) {
  101. case 'gif': header("Content-type: image/gif"); break;
  102. case 'jpeg': header("Content-type: image/jpeg"); break;
  103. case 'png': header("Content-type: image/png"); break;
  104. }
  105. }
  106. switch($this->image_type) {
  107. case 'gif': imagegif($this->image, $image_file); break;
  108. case 'jpeg': imagejpeg($this->image, $image_file, $image_compress); break;
  109. case 'png': imagepng($this->image, $image_file); break;
  110. }
  111. if($image_permiss != '') {
  112. chmod($image_file, $image_permiss);
  113. }
  114. }
  115. public function imageout() {
  116. imagedestroy($this->image);
  117. }
  118. public function __destruct() {
  119. }
  120. }
  121.  
  122.  
  123.  
  124. ?>