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

Размер файла: 1.63Kb
  1. <?php
  2. error_reporting(0);
  3. include 'connect.php';
  4. include 'functions.php';
  5. include 'config.php';
  6. $p=@$_GET['p'];
  7. $p=valid_number($p);
  8. $res=mysql_query("SELECT *
  9. FROM `category`
  10. WHERE `id`='$p'
  11. LIMIT 1");
  12. $arr = mysql_fetch_assoc($res);
  13. $dec=urldecode($arr['array']);
  14. $dec=unserialize($dec);
  15. $f=$_GET['f'];
  16. $f=valid_number($f);
  17. $theme = $dec[$f];
  18. include 'tar.php';
  19. $size = 100;
  20. $archive = new Archive_Tar($theme);
  21. if(!$deskside_file=$archive -> extractInString ('Theme.xml'))
  22. {
  23. $list = $archive->listContent();
  24. $all = sizeof($list);
  25. for($i=0; $i<$all; ++$i)
  26. {
  27. if(pathinfo($list[$i]['filename'],PATHINFO_EXTENSION) == 'xml')
  28. { $deskside_file=$archive -> extractInString($list[$i]['filename']);
  29. break;
  30. }
  31. }
  32. }
  33. $image_puth = simplexml_load_string($deskside_file)-> Standby_image['Source'] or
  34. simplexml_load_string($deskside_file)-> Desktop_image['Source'];
  35. $image_string = $archive -> extractInString($image_puth);
  36. $resource = imagecreatefromstring($image_string);
  37. if ($resource){
  38. $width = imageSX($resource);
  39. $height = imageSY($resource);
  40. $image = imagecreatetruecolor($size,$size);
  41. if ( $width > $height )
  42. {imagecopyresampled( $image, $resource, 0, 0, round( ( max( $width, $height ) - min( $width, $height ) ) / 2 ), 0, $size, $size, min( $width, $height ), min( $width, $height ) );}
  43. if ( $width < $height )
  44. {imagecopyresampled( $image, $resource, 0, 0, 0, 0, $size, $size, min( $width, $height ), min( $width, $height ) );}
  45. if ( $width == $height )
  46. {imagecopyresampled( $image, $resource, 0, 0, 0, 0, $size, $size, $width, $width );}
  47. header("Content-type:image/jpeg");
  48. imagejpeg($image);
  49. imagedestroy( $image );
  50. }
  51. ?>