123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975 |
- <?php
- /**
- * This file deals with low-level graphics operations performed on images,
- * specially as needed for avatars (uploaded avatars), attachments, or
- * visual verification images.
- * It uses, for gifs at least, Gif Util. For more information on that,
- * please see its website.
- * TrueType fonts supplied by www.LarabieFonts.com
- *
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines http://www.simplemachines.org
- * @copyright 2011 Simple Machines
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.0
- */
- if (!defined('SMF'))
- die('Hacking attempt...');
- /**
- * Create a thumbnail of the given source.
- *
- * @uses resizeImageFile() function to achieve the resize.
- *
- * @param string $source
- * @param int $max_width
- * @param int $max_height
- * @return bool, whether the thumbnail creation was successful.
- */
- function createThumbnail($source, $max_width, $max_height)
- {
- global $modSettings;
- $destName = $source . '_thumb.tmp';
- // Do the actual resize.
- if (!empty($modSettings['attachment_thumb_png']))
- $success = resizeImageFile($source, $destName, $max_width, $max_height, 3);
- else
- $success = resizeImageFile($source, $destName, $max_width, $max_height);
- // Okay, we're done with the temporary stuff.
- $destName = substr($destName, 0, -4);
- if ($success && @rename($destName . '.tmp', $destName))
- return true;
- else
- {
- @unlink($destName . '.tmp');
- @touch($destName);
- return false;
- }
- }
- /**
- * Creates a copy of the file at the same location as fileName.
- * The file would have the format preferred_format if possible,
- * otherwise the default format is jpeg.
- * The function makes sure that all non-essential image contents are disposed.
- *
- * @param string $fileName
- * @param int $preferred_format = 0
- * @return bool, true on success, false on failure.
- */
- function reencodeImage($fileName, $preferred_format = 0)
- {
- // There is nothing we can do without GD, sorry!
- if (!checkGD())
- return false;
- if (!resizeImageFile($fileName, $fileName . '.tmp', null, null, $preferred_format))
- {
- if (file_exists($fileName . '.tmp'))
- unlink($fileName . '.tmp');
- return false;
- }
- if (!unlink($fileName))
- return false;
- if (!rename($fileName . '.tmp', $fileName))
- return false;
- return true;
- }
- /**
- * Searches through the file to see if there's non-binary content.
- * If extensiveCheck is true, searches for asp/php short tags as well.
- *
- * @param string $fileName
- * @param bool $extensiveCheck = false
- * @return true on success, false on failure.
- */
- function checkImageContents($fileName, $extensiveCheck = false)
- {
- $fp = fopen($fileName, 'rb');
- if (!$fp)
- fatal_lang_error('attach_timeout');
- $prev_chunk = '';
- while (!feof($fp))
- {
- $cur_chunk = fread($fp, 8192);
- // Though not exhaustive lists, better safe than sorry.
- if (!empty($extensiveCheck))
- {
- // Paranoid check. Some like it that way.
- if (preg_match('~(iframe|\\<\\?|\\<%|html|eval|body|script\W|[CF]WS[\x01-\x0C])~i', $prev_chunk . $cur_chunk) === 1)
- {
- fclose($fp);
- return false;
- }
- }
- else
- {
- // Check for potential infection
- if (preg_match('~(iframe|html|eval|body|script\W|[CF]WS[\x01-\x0C])~i', $prev_chunk . $cur_chunk) === 1)
- {
- fclose($fp);
- return false;
- }
- }
- $prev_chunk = $cur_chunk;
- }
- fclose($fp);
- return true;
- }
- /**
- * Sets a global $gd2 variable needed by some functions to determine
- * whether the GD2 library is present.
- *
- * @return whether or not GD1 is available.
- */
- function checkGD()
- {
- global $gd2;
- // Check to see if GD is installed and what version.
- if (($extensionFunctions = get_extension_funcs('gd')) === false)
- return false;
- // Also determine if GD2 is installed and store it in a global.
- $gd2 = in_array('imagecreatetruecolor', $extensionFunctions) && function_exists('imagecreatetruecolor');
- return true;
- }
- /**
- * Resizes an image from a remote location or a local file.
- * Puts the resized image at the destination location.
- * The file would have the format preferred_format if possible,
- * otherwise the default format is jpeg.
- *
- * @param string $source
- * @param string $destination
- * @param int $max_width
- * @param int $max_height
- * @param int $preferred_format = 0
- * @return whether it succeeded.
- */
- function resizeImageFile($source, $destination, $max_width, $max_height, $preferred_format = 0)
- {
- global $sourcedir;
- // Nothing to do without GD
- if (!checkGD())
- return false;
- static $default_formats = array(
- '1' => 'gif',
- '2' => 'jpeg',
- '3' => 'png',
- '6' => 'bmp',
- '15' => 'wbmp'
- );
- require_once($sourcedir . '/Subs-Package.php');
- @ini_set('memory_limit', '90M');
- $success = false;
- // Get the image file, we have to work with something after all
- $fp_destination = fopen($destination, 'wb');
- if ($fp_destination && substr($source, 0, 7) == 'http://')
- {
- $fileContents = fetch_web_data($source);
- fwrite($fp_destination, $fileContents);
- fclose($fp_destination);
- $sizes = @getimagesize($destination);
- }
- elseif ($fp_destination)
- {
- $sizes = @getimagesize($source);
- $fp_source = fopen($source, 'rb');
- if ($fp_source !== false)
- {
- while (!feof($fp_source))
- fwrite($fp_destination, fread($fp_source, 8192));
- fclose($fp_source);
- }
- else
- $sizes = array(-1, -1, -1);
- fclose($fp_destination);
- }
- // We can't get to the file.
- else
- $sizes = array(-1, -1, -1);
- // Gif? That might mean trouble if gif support is not available.
- if ($sizes[2] == 1 && !function_exists('imagecreatefromgif') && function_exists('imagecreatefrompng'))
- {
- // Download it to the temporary file... use the special gif library... and save as png.
- if ($img = @gif_loadFile($destination) && gif_outputAsPng($img, $destination))
- $sizes[2] = 3;
- }
- // A known and supported format?
- if (isset($default_formats[$sizes[2]]) && function_exists('imagecreatefrom' . $default_formats[$sizes[2]]))
- {
- $imagecreatefrom = 'imagecreatefrom' . $default_formats[$sizes[2]];
- if ($src_img = @$imagecreatefrom($destination))
- {
- resizeImage($src_img, $destination, imagesx($src_img), imagesy($src_img), $max_width === null ? imagesx($src_img) : $max_width, $max_height === null ? imagesy($src_img) : $max_height, true, $preferred_format);
- $success = true;
- }
- }
- return $success;
- }
- /**
- * Resizes src_img proportionally to fit within max_width and max_height limits
- * if it is too large.
- * If GD2 is present, it'll use it to achieve better quality.
- * It saves the new image to destination_filename, as preferred_format
- * if possible, default is jpeg.
- * @uses GD
- *
- * @param resource $src_img
- * @param string $destName
- * @param int $src_width
- * @param int $src_height
- * @param int $max_width
- * @param int $max_height
- * @param bool $force_resize = false
- * @param int $preferred_format = 0
- */
- function resizeImage($src_img, $destName, $src_width, $src_height, $max_width, $max_height, $force_resize = false, $preferred_format = 0)
- {
- global $gd2, $modSettings;
- // Without GD, no image resizing at all.
- if (!checkGD())
- return false;
- $success = false;
- // Determine whether to resize to max width or to max height (depending on the limits.)
- if (!empty($max_width) || !empty($max_height))
- {
- if (!empty($max_width) && (empty($max_height) || $src_height * $max_width / $src_width <= $max_height))
- {
- $dst_width = $max_width;
- $dst_height = floor($src_height * $max_width / $src_width);
- }
- elseif (!empty($max_height))
- {
- $dst_width = floor($src_width * $max_height / $src_height);
- $dst_height = $max_height;
- }
- // Don't bother resizing if it's already smaller...
- if (!empty($dst_width) && !empty($dst_height) && ($dst_width < $src_width || $dst_height < $src_height || $force_resize))
- {
- // (make a true color image, because it just looks better for resizing.)
- if ($gd2)
- {
- $dst_img = imagecreatetruecolor($dst_width, $dst_height);
- // Deal nicely with a PNG - because we can.
- if ((!empty($preferred_format)) && ($preferred_format == 3))
- {
- imagealphablending($dst_img, false);
- if (function_exists('imagesavealpha'))
- imagesavealpha($dst_img, true);
- }
- }
- else
- $dst_img = imagecreate($dst_width, $dst_height);
- // Resize it!
- if ($gd2)
- imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $dst_width, $dst_height, $src_width, $src_height);
- else
- imagecopyresamplebicubic($dst_img, $src_img, 0, 0, 0, 0, $dst_width, $dst_height, $src_width, $src_height);
- }
- else
- $dst_img = $src_img;
- }
- else
- $dst_img = $src_img;
- // Save the image as ...
- if (!empty($preferred_format) && ($preferred_format == 3) && function_exists('imagepng'))
- $success = imagepng($dst_img, $destName);
- elseif (!empty($preferred_format) && ($preferred_format == 1) && function_exists('imagegif'))
- $success = imagegif($dst_img, $destName);
- elseif (function_exists('imagejpeg'))
- $success = imagejpeg($dst_img, $destName);
- // Free the memory.
- imagedestroy($src_img);
- if ($dst_img != $src_img)
- imagedestroy($dst_img);
- return $success;
- }
- /**
- * Copy image.
- * Used when imagecopyresample() is not available.
- * @param resource $dst_img
- * @param resource $src_img
- * @param int $dst_x
- * @param int $dst_y
- * @param int $src_x
- * @param int $src_y
- * @param int $dst_w
- * @param int $dst_h
- * @param int $src_w
- * @param int $src_h
- */
- function imagecopyresamplebicubic($dst_img, $src_img, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h)
- {
- $palsize = imagecolorstotal($src_img);
- for ($i = 0; $i < $palsize; $i++)
- {
- $colors = imagecolorsforindex($src_img, $i);
- imagecolorallocate($dst_img, $colors['red'], $colors['green'], $colors['blue']);
- }
- $scaleX = ($src_w - 1) / $dst_w;
- $scaleY = ($src_h - 1) / $dst_h;
- $scaleX2 = (int) $scaleX / 2;
- $scaleY2 = (int) $scaleY / 2;
- for ($j = $src_y; $j < $dst_h; $j++)
- {
- $sY = (int) $j * $scaleY;
- $y13 = $sY + $scaleY2;
- for ($i = $src_x; $i < $dst_w; $i++)
- {
- $sX = (int) $i * $scaleX;
- $x34 = $sX + $scaleX2;
- $color1 = imagecolorsforindex($src_img, imagecolorat($src_img, $sX, $y13));
- $color2 = imagecolorsforindex($src_img, imagecolorat($src_img, $sX, $sY));
- $color3 = imagecolorsforindex($src_img, imagecolorat($src_img, $x34, $y13));
- $color4 = imagecolorsforindex($src_img, imagecolorat($src_img, $x34, $sY));
- $red = ($color1['red'] + $color2['red'] + $color3['red'] + $color4['red']) / 4;
- $green = ($color1['green'] + $color2['green'] + $color3['green'] + $color4['green']) / 4;
- $blue = ($color1['blue'] + $color2['blue'] + $color3['blue'] + $color4['blue']) / 4;
- $color = imagecolorresolve($dst_img, $red, $green, $blue);
- if ($color == -1)
- {
- if ($palsize++ < 256)
- imagecolorallocate($dst_img, $red, $green, $blue);
- $color = imagecolorclosest($dst_img, $red, $green, $blue);
- }
- imagesetpixel($dst_img, $i + $dst_x - $src_x, $j + $dst_y - $src_y, $color);
- }
- }
- }
- if (!function_exists('imagecreatefrombmp'))
- {
- /**
- * It is set only if it doesn't already exist (for forwards compatiblity.)
- * It only supports uncompressed bitmaps.
- *
- * @param string $filename
- * @return resource, an image identifier representing the bitmap image
- * obtained from the given filename.
- */
- function imagecreatefrombmp($filename)
- {
- global $gd2;
- $fp = fopen($filename, 'rb');
- $errors = error_reporting(0);
- $header = unpack('vtype/Vsize/Vreserved/Voffset', fread($fp, 14));
- $info = unpack('Vsize/Vwidth/Vheight/vplanes/vbits/Vcompression/Vimagesize/Vxres/Vyres/Vncolor/Vcolorimportant', fread($fp, 40));
- if ($header['type'] != 0x4D42)
- false;
- if ($gd2)
- $dst_img = imagecreatetruecolor($info['width'], $info['height']);
- else
- $dst_img = imagecreate($info['width'], $info['height']);
- $palette_size = $header['offset'] - 54;
- $info['ncolor'] = $palette_size / 4;
- $palette = array();
- $palettedata = fread($fp, $palette_size);
- $n = 0;
- for ($j = 0; $j < $palette_size; $j++)
- {
- $b = ord($palettedata{$j++});
- $g = ord($palettedata{$j++});
- $r = ord($palettedata{$j++});
- $palette[$n++] = imagecolorallocate($dst_img, $r, $g, $b);
- }
- $scan_line_size = ($info['bits'] * $info['width'] + 7) >> 3;
- $scan_line_align = $scan_line_size & 3 ? 4 - ($scan_line_size & 3) : 0;
- for ($y = 0, $l = $info['height'] - 1; $y < $info['height']; $y++, $l--)
- {
- fseek($fp, $header['offset'] + ($scan_line_size + $scan_line_align) * $l);
- $scan_line = fread($fp, $scan_line_size);
- if (strlen($scan_line) < $scan_line_size)
- continue;
- if ($info['bits'] == 32)
- {
- $x = 0;
- for ($j = 0; $j < $scan_line_size; $x++)
- {
- $b = ord($scan_line{$j++});
- $g = ord($scan_line{$j++});
- $r = ord($scan_line{$j++});
- $j++;
- $color = imagecolorexact($dst_img, $r, $g, $b);
- if ($color == -1)
- {
- $color = imagecolorallocate($dst_img, $r, $g, $b);
- // Gah! Out of colors? Stupid GD 1... try anyhow.
- if ($color == -1)
- $color = imagecolorclosest($dst_img, $r, $g, $b);
- }
- imagesetpixel($dst_img, $x, $y, $color);
- }
- }
- elseif ($info['bits'] == 24)
- {
- $x = 0;
- for ($j = 0; $j < $scan_line_size; $x++)
- {
- $b = ord($scan_line{$j++});
- $g = ord($scan_line{$j++});
- $r = ord($scan_line{$j++});
- $color = imagecolorexact($dst_img, $r, $g, $b);
- if ($color == -1)
- {
- $color = imagecolorallocate($dst_img, $r, $g, $b);
- // Gah! Out of colors? Stupid GD 1... try anyhow.
- if ($color == -1)
- $color = imagecolorclosest($dst_img, $r, $g, $b);
- }
- imagesetpixel($dst_img, $x, $y, $color);
- }
- }
- elseif ($info['bits'] == 16)
- {
- $x = 0;
- for ($j = 0; $j < $scan_line_size; $x++)
- {
- $b1 = ord($scan_line{$j++});
- $b2 = ord($scan_line{$j++});
- $word = $b2 * 256 + $b1;
- $b = (($word & 31) * 255) / 31;
- $g = ((($word >> 5) & 31) * 255) / 31;
- $r = ((($word >> 10) & 31) * 255) / 31;
- // Scale the image colors up properly.
- $color = imagecolorexact($dst_img, $r, $g, $b);
- if ($color == -1)
- {
- $color = imagecolorallocate($dst_img, $r, $g, $b);
- // Gah! Out of colors? Stupid GD 1... try anyhow.
- if ($color == -1)
- $color = imagecolorclosest($dst_img, $r, $g, $b);
- }
- imagesetpixel($dst_img, $x, $y, $color);
- }
- }
- elseif ($info['bits'] == 8)
- {
- $x = 0;
- for ($j = 0; $j < $scan_line_size; $x++)
- imagesetpixel($dst_img, $x, $y, $palette[ord($scan_line{$j++})]);
- }
- elseif ($info['bits'] == 4)
- {
- $x = 0;
- for ($j = 0; $j < $scan_line_size; $x++)
- {
- $byte = ord($scan_line{$j++});
- imagesetpixel($dst_img, $x, $y, $palette[(int) ($byte / 16)]);
- if (++$x < $info['width'])
- imagesetpixel($dst_img, $x, $y, $palette[$byte & 15]);
- }
- }
- else
- {
- // Sorry, I'm just not going to do monochrome :P.
- }
- }
- fclose($fp);
- error_reporting($errors);
- return $dst_img;
- }
- }
- /**
- * Loads a gif file with the Yamasoft GIF utility class.
- *
- * @param string $lpszFileName
- * @param int $iIndex
- * @return resource, a new GD image.
- */
- function gif_loadFile($lpszFileName, $iIndex = 0)
- {
- // The classes needed are in this file.
- loadClassFile('Class-Graphics.php');
- $gif = new gif_file();
- if (!$gif->loadFile($lpszFileName, $iIndex))
- return false;
- return $gif;
- }
- /**
- * Writes a gif file to disk as a png file.
- * @param resource $gif
- * @param string $lpszFileName
- * @param int $background_color = -1
- * @return bool, whether it was successful or not.
- */
- function gif_outputAsPng($gif, $lpszFileName, $background_color = -1)
- {
- if (!isset($gif) || @get_class($gif) != 'cgif' || !$gif->loaded || $lpszFileName == '')
- return false;
- $fd = $gif->get_png_data($background_color);
- if (strlen($fd) <= 0)
- return false;
- if (!($fh = @fopen($lpszFileName, 'wb')))
- return false;
- @fwrite($fh, $fd, strlen($fd));
- @fflush($fh);
- @fclose($fh);
- return true;
- }
- /**
- * Show an image containing the visual verification code for registration.
- * Requires the GD extension.
- * Uses a random font for each letter from default_theme_dir/fonts.
- * Outputs a gif or a png (depending on whether gif ix supported).
- *
- * @param string $code
- * @return false if something goes wrong.
- */
- function showCodeImage($code)
- {
- global $settings, $user_info, $modSettings;
- /*
- Note: The higher the value of visual_verification_type the harder the verification is - from 0 as disabled through to 4 as "Very hard".
- */
- // What type are we going to be doing?
- $imageType = $modSettings['visual_verification_type'];
- // Special case to allow the admin center to show samples.
- if ($user_info['is_admin'] && isset($_GET['type']))
- $imageType = (int) $_GET['type'];
- // Some quick references for what we do.
- // Do we show no, low or high noise?
- $noiseType = $imageType == 3 ? 'low' : ($imageType == 4 ? 'high' : ($imageType == 5 ? 'extreme' : 'none'));
- // Can we have more than one font in use?
- $varyFonts = $imageType > 3 ? true : false;
- // Just a plain white background?
- $simpleBGColor = $imageType < 3 ? true : false;
- // Plain black foreground?
- $simpleFGColor = $imageType == 0 ? true : false;
- // High much to rotate each character.
- $rotationType = $imageType == 1 ? 'none' : ($imageType > 3 ? 'low' : 'high');
- // Do we show some characters inversed?
- $showReverseChars = $imageType > 3 ? true : false;
- // Special case for not showing any characters.
- $disableChars = $imageType == 0 ? true : false;
- // What do we do with the font colors. Are they one color, close to one color or random?
- $fontColorType = $imageType == 1 ? 'plain' : ($imageType > 3 ? 'random' : 'cyclic');
- // Are the fonts random sizes?
- $fontSizeRandom = $imageType > 3 ? true : false;
- // How much space between characters?
- $fontHorSpace = $imageType > 3 ? 'high' : ($imageType == 1 ? 'medium' : 'minus');
- // Where do characters sit on the image? (Fixed position or random/very random)
- $fontVerPos = $imageType == 1 ? 'fixed' : ($imageType > 3 ? 'vrandom' : 'random');
- // Make font semi-transparent?
- $fontTrans = $imageType == 2 || $imageType == 3 ? true : false;
- // Give the image a border?
- $hasBorder = $simpleBGColor;
- // Is this GD2? Needed for pixel size.
- $testGD = get_extension_funcs('gd');
- $gd2 = in_array('imagecreatetruecolor', $testGD) && function_exists('imagecreatetruecolor');
- unset($testGD);
- // The amount of pixels inbetween characters.
- $character_spacing = 1;
- // What color is the background - generally white unless we're on "hard".
- if ($simpleBGColor)
- $background_color = array(255, 255, 255);
- else
- $background_color = isset($settings['verification_background']) ? $settings['verification_background'] : array(236, 237, 243);
- // The color of the characters shown (red, green, blue).
- if ($simpleFGColor)
- $foreground_color = array(0, 0, 0);
- else
- {
- $foreground_color = array(64, 101, 136);
- // Has the theme author requested a custom color?
- if (isset($settings['verification_foreground']))
- $foreground_color = $settings['verification_foreground'];
- }
- if (!is_dir($settings['default_theme_dir'] . '/fonts'))
- return false;
- // Get a list of the available fonts.
- $font_dir = dir($settings['default_theme_dir'] . '/fonts');
- $font_list = array();
- $ttfont_list = array();
- while ($entry = $font_dir->read())
- {
- if (preg_match('~^(.+)\.gdf$~', $entry, $matches) === 1)
- $font_list[] = $entry;
- elseif (preg_match('~^(.+)\.ttf$~', $entry, $matches) === 1)
- $ttfont_list[] = $entry;
- }
- if (empty($font_list))
- return false;
- // For non-hard things don't even change fonts.
- if (!$varyFonts)
- {
- $font_list = array($font_list[0]);
- // Try use Screenge if we can - it looks good!
- if (in_array('Screenge.ttf', $ttfont_list))
- $ttfont_list = array('Screenge.ttf');
- else
- $ttfont_list = empty($ttfont_list) ? array() : array($ttfont_list[0]);
- }
- // Create a list of characters to be shown.
- $characters = array();
- $loaded_fonts = array();
- for ($i = 0; $i < strlen($code); $i++)
- {
- $characters[$i] = array(
- 'id' => $code{$i},
- 'font' => array_rand($font_list),
- );
- $loaded_fonts[$characters[$i]['font']] = null;
- }
- // Load all fonts and determine the maximum font height.
- foreach ($loaded_fonts as $font_index => $dummy)
- $loaded_fonts[$font_index] = imageloadfont($settings['default_theme_dir'] . '/fonts/' . $font_list[$font_index]);
- // Determine the dimensions of each character.
- $total_width = $character_spacing * strlen($code) + 20;
- $max_height = 0;
- foreach ($characters as $char_index => $character)
- {
- $characters[$char_index]['width'] = imagefontwidth($loaded_fonts[$character['font']]);
- $characters[$char_index]['height'] = imagefontheight($loaded_fonts[$character['font']]);
- $max_height = max($characters[$char_index]['height'] + 5, $max_height);
- $total_width += $characters[$char_index]['width'];
- }
- // Create an image.
- $code_image = $gd2 ? imagecreatetruecolor($total_width, $max_height) : imagecreate($total_width, $max_height);
- // Draw the background.
- $bg_color = imagecolorallocate($code_image, $background_color[0], $background_color[1], $background_color[2]);
- imagefilledrectangle($code_image, 0, 0, $total_width - 1, $max_height - 1, $bg_color);
- // Randomize the foreground color a little.
- for ($i = 0; $i < 3; $i++)
- $foreground_color[$i] = mt_rand(max($foreground_color[$i] - 3, 0), min($foreground_color[$i] + 3, 255));
- $fg_color = imagecolorallocate($code_image, $foreground_color[0], $foreground_color[1], $foreground_color[2]);
- // Color for the dots.
- for ($i = 0; $i < 3; $i++)
- $dotbgcolor[$i] = $background_color[$i] < $foreground_color[$i] ? mt_rand(0, max($foreground_color[$i] - 20, 0)) : mt_rand(min($foreground_color[$i] + 20, 255), 255);
- $randomness_color = imagecolorallocate($code_image, $dotbgcolor[0], $dotbgcolor[1], $dotbgcolor[2]);
- // Some squares/rectanges for new extreme level
- if ($noiseType == 'extreme')
- {
- for ($i = 0; $i < rand(1, 5); $i++)
- {
- $x1 = rand(0, $total_width / 4);
- $x2 = $x1 + round(rand($total_width / 4, $total_width));
- $y1 = rand(0, $max_height);
- $y2 = $y1 + round(rand(0, $max_height / 3));
- imagefilledrectangle($code_image, $x1, $y1, $x2, $y2, mt_rand(0, 1) ? $fg_color : $randomness_color);
- }
- }
- // Fill in the characters.
- if (!$disableChars)
- {
- $cur_x = 0;
- foreach ($characters as $char_index => $character)
- {
- // Can we use true type fonts?
- $can_do_ttf = function_exists('imagettftext');
- // How much rotation will we give?
- if ($rotationType == 'none')
- $angle = 0;
- else
- $angle = mt_rand(-100, 100) / ($rotationType == 'high' ? 6 : 10);
- // What color shall we do it?
- if ($fontColorType == 'cyclic')
- {
- // Here we'll pick from a set of acceptance types.
- $colors = array(
- array(10, 120, 95),
- array(46, 81, 29),
- array(4, 22, 154),
- array(131, 9, 130),
- array(0, 0, 0),
- array(143, 39, 31),
- );
- if (!isset($last_index))
- $last_index = -1;
- $new_index = $last_index;
- while ($last_index == $new_index)
- $new_index = mt_rand(0, count($colors) - 1);
- $char_fg_color = $colors[$new_index];
- $last_index = $new_index;
- }
- elseif ($fontColorType == 'random')
- $char_fg_color = array(mt_rand(max($foreground_color[0] - 2, 0), $foreground_color[0]), mt_rand(max($foreground_color[1] - 2, 0), $foreground_color[1]), mt_rand(max($foreground_color[2] - 2, 0), $foreground_color[2]));
- else
- $char_fg_color = array($foreground_color[0], $foreground_color[1], $foreground_color[2]);
- if (!empty($can_do_ttf))
- {
- // GD2 handles font size differently.
- if ($fontSizeRandom)
- $font_size = $gd2 ? mt_rand(17, 19) : mt_rand(18, 25);
- else
- $font_size = $gd2 ? 18 : 24;
- // Work out the sizes - also fix the character width cause TTF not quite so wide!
- $font_x = $fontHorSpace == 'minus' && $cur_x > 0 ? $cur_x - 3 : $cur_x + 5;
- $font_y = $max_height - ($fontVerPos == 'vrandom' ? mt_rand(2, 8) : ($fontVerPos == 'random' ? mt_rand(3, 5) : 5));
- // What font face?
- if (!empty($ttfont_list))
- $fontface = $settings['default_theme_dir'] . '/fonts/' . $ttfont_list[mt_rand(0, count($ttfont_list) - 1)];
- // What color are we to do it in?
- $is_reverse = $showReverseChars ? mt_rand(0, 1) : false;
- $char_color = function_exists('imagecolorallocatealpha') && $fontTrans ? imagecolorallocatealpha($code_image, $char_fg_color[0], $char_fg_color[1], $char_fg_color[2], 50) : imagecolorallocate($code_image, $char_fg_color[0], $char_fg_color[1], $char_fg_color[2]);
- $fontcord = @imagettftext($code_image, $font_size, $angle, $font_x, $font_y, $char_color, $fontface, $character['id']);
- if (empty($fontcord))
- $can_do_ttf = false;
- elseif ($is_reverse)
- {
- imagefilledpolygon($code_image, $fontcord, 4, $fg_color);
- // Put the character back!
- imagettftext($code_image, $font_size, $angle, $font_x, $font_y, $randomness_color, $fontface, $character['id']);
- }
- if ($can_do_ttf)
- $cur_x = max($fontcord[2], $fontcord[4]) + ($angle == 0 ? 0 : 3);
- }
- if (!$can_do_ttf)
- {
- // Rotating the characters a little...
- if (function_exists('imagerotate'))
- {
- $char_image = $gd2 ? imagecreatetruecolor($character['width'], $character['height']) : imagecreate($character['width'], $character['height']);
- $char_bgcolor = imagecolorallocate($char_image, $background_color[0], $background_color[1], $background_color[2]);
- imagefilledrectangle($char_image, 0, 0, $character['width'] - 1, $character['height'] - 1, $char_bgcolor);
- imagechar($char_image, $loaded_fonts[$character['font']], 0, 0, $character['id'], imagecolorallocate($char_image, $char_fg_color[0], $char_fg_color[1], $char_fg_color[2]));
- $rotated_char = imagerotate($char_image, mt_rand(-100, 100) / 10, $char_bgcolor);
- imagecopy($code_image, $rotated_char, $cur_x, 0, 0, 0, $character['width'], $character['height']);
- imagedestroy($rotated_char);
- imagedestroy($char_image);
- }
- // Sorry, no rotation available.
- else
- imagechar($code_image, $loaded_fonts[$character['font']], $cur_x, floor(($max_height - $character['height']) / 2), $character['id'], imagecolorallocate($code_image, $char_fg_color[0], $char_fg_color[1], $char_fg_color[2]));
- $cur_x += $character['width'] + $character_spacing;
- }
- }
- }
- // If disabled just show a cross.
- else
- {
- imageline($code_image, 0, 0, $total_width, $max_height, $fg_color);
- imageline($code_image, 0, $max_height, $total_width, 0, $fg_color);
- }
- // Make the background color transparent on the hard image.
- if (!$simpleBGColor)
- imagecolortransparent($code_image, $bg_color);
- if ($hasBorder)
- imagerectangle($code_image, 0, 0, $total_width - 1, $max_height - 1, $fg_color);
- // Add some noise to the background?
- if ($noiseType != 'none')
- {
- for ($i = mt_rand(0, 2); $i < $max_height; $i += mt_rand(1, 2))
- for ($j = mt_rand(0, 10); $j < $total_width; $j += mt_rand(1, 10))
- imagesetpixel($code_image, $j, $i, mt_rand(0, 1) ? $fg_color : $randomness_color);
- // Put in some lines too?
- if ($noiseType != 'extreme')
- {
- $num_lines = $noiseType == 'high' ? mt_rand(3, 7) : mt_rand(2, 5);
- for ($i = 0; $i < $num_lines; $i++)
- {
- if (mt_rand(0, 1))
- {
- $x1 = mt_rand(0, $total_width);
- $x2 = mt_rand(0, $total_width);
- $y1 = 0; $y2 = $max_height;
- }
- else
- {
- $y1 = mt_rand(0, $max_height);
- $y2 = mt_rand(0, $max_height);
- $x1 = 0; $x2 = $total_width;
- }
- imagesetthickness($code_image, mt_rand(1, 2));
- imageline($code_image, $x1, $y1, $x2, $y2, mt_rand(0, 1) ? $fg_color : $randomness_color);
- }
- }
- else
- {
- // Put in some ellipse
- $num_ellipse = $noiseType == 'extreme' ? mt_rand(6, 12) : mt_rand(2, 6);
- for ($i = 0; $i < $num_ellipse; $i++)
- {
- $x1 = round(rand(($total_width / 4) * -1, $total_width + ($total_width / 4)));
- $x2 = round(rand($total_width / 2, 2 * $total_width));
- $y1 = round(rand(($max_height / 4) * -1, $max_height + ($max_height / 4)));
- $y2 = round(rand($max_height / 2, 2 * $max_height));
- imageellipse($code_image, $x1, $y1, $x2, $y2, mt_rand(0, 1) ? $fg_color : $randomness_color);
- }
- }
- }
- // Show the image.
- if (function_exists('imagegif'))
- {
- header('Content-type: image/gif');
- imagegif($code_image);
- }
- else
- {
- header('Content-type: image/png');
- imagepng($code_image);
- }
- // Bail out.
- imagedestroy($code_image);
- die();
- }
- /**
- * Show a letter for the visual verification code.
- * Alternative function for showCodeImage() in case GD is missing.
- * Includes an image from a random sub directory of default_theme_dir/fonts.
- *
- * @param string $letter
- */
- function showLetterImage($letter)
- {
- global $settings;
- if (!is_dir($settings['default_theme_dir'] . '/fonts'))
- return false;
- // Get a list of the available font directories.
- $font_dir = dir($settings['default_theme_dir'] . '/fonts');
- $font_list = array();
- while ($entry = $font_dir->read())
- if ($entry[0] !== '.' && is_dir($settings['default_theme_dir'] . '/fonts/' . $entry) && file_exists($settings['default_theme_dir'] . '/fonts/' . $entry . '.gdf'))
- $font_list[] = $entry;
- if (empty($font_list))
- return false;
- // Pick a random font.
- $random_font = $font_list[array_rand($font_list)];
- // Check if the given letter exists.
- if (!file_exists($settings['default_theme_dir'] . '/fonts/' . $random_font . '/' . $letter . '.gif'))
- return false;
- // Include it!
- header('Content-type: image/gif');
- include($settings['default_theme_dir'] . '/fonts/' . $random_font . '/' . $letter . '.gif');
- // Nothing more to come.
- die();
- }
- ?>
|