Ejemplo n.º 1
0
<?php
// session_start();
//ob_start( 'ob_gzhandler' );
// get configuration

//ob_start("ob_gzhandler");

require("constants.php");
require("config.php");

require("init.php");

if ($_GET["desktop"] == "true" )  {
	require_once("classes/desktop_wallpaper.php");
	desktop_wallpaper::generate("test.jpg");

	die("F");
}


$i_script_start = microtime(1);

if ($section != "image")
{
	/*
	header("Content-Type: text/html; charset=utf-8");
	header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
	header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
	header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
	header("Cache-Control: post-check=0, pre-check=0", false);
	header("Pragma: no-cache"); // HTTP/1.0
Ejemplo n.º 2
0
 public static function generate($arr = array())
 {
     global $config_q;
     if (file_exists($config_q["basepath"] . "/cache/wallpapers/" . $arr["file"])) {
         //readfile ($config_q["basepath"]."/cache/images/".$arr["file"]);
         die("image exists but ends up in script. apache is configured wrong");
     } else {
         //header('Content-Type: image/jpeg');
     }
     /*
     		if (strpos($arr["file"], "px.") > 0 )
     		{
     			$name_original = preg_replace("/_[0-9]*px/imsU", "", $arr["file"]);
     			preg_match("/_([0-9]*)px/imsU", $arr["file"], $mt);
     			list($width,$height)=getimagesize($config_q["basepath"]."/img/wallpapers/5.png");
     			$newwidth = $mt[1];
     		}
     		else
     		{*/
     $name_original = $arr["file"];
     list($width, $height) = getimagesize($config_q["basepath"] . "/img/wallpapers/5.png");
     $newwidth = $width;
     //}
     // Create an Image from it so we can do the resize
     $src = imagecreatefrompng($config_q["basepath"] . "/img/wallpapers/5.png");
     // Capture the original size of the uploaded image
     $black = imagecolorallocate($src, 0, 0, 0);
     $white = imagecolorallocate($src, 255, 255, 255);
     $red = imagecolorallocate($src, 152, 57, 9);
     // Path to our font file
     $font = 'fonts/georgia.ttf';
     // First we create our bounding box for the first text
     $quotation = wordwrap('Me mõtleme harva sellest, mis meil on, ent muretseme kogu aeg selle pärast, mida meil pole.', 40);
     $bbox = imagettfbbox(20, 0, $font, $quotation);
     $x = 360;
     $y = 300;
     imagettftext($src, 20, 0, $x, $y, $red, $font, $quotation);
     $width = $bbox[4] - $bbox[6];
     // upper-right x minus upper-left x
     $author = desktop_wallpaper::justify("- Arthur Schopenhauer", $width, JPAD_RIGHT);
     imagettftext($src, 20, 0, $x, $y + ($bbox[0] - $bbox[6]), $red, $font, $author);
     // For our purposes, I have resized the image to be
     // 600 pixels wide, and maintain the original aspect
     // ratio. This prevents the image from being "stretched"
     // or "squashed". If you prefer some max width other than
     // 600, simply change the $newwidth variable
     $newheight = $height / $width * $newwidth;
     $tmp = imagecreatetruecolor($newwidth, $newheight);
     // this line actually does the image resizing, copying from the original
     // image into the $tmp image
     imagecopyresampled($tmp, $src, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
     // now write the resized image to disk. I have assumed that you want the
     // resized, uploaded image file to reside in the ./images subdirectory.
     $filename = $config_q["basepath"] . "/cache/images/" . $arr["file"];
     imagejpeg($tmp, $filename, 100);
     imagejpeg($tmp, NULL, 100);
     //readfile($filename);
     imagedestroy($src);
     imagedestroy($tmp);
     // NOTE: PHP will clean up the temp file it created when the request
     // has completed.
     die;
 }