Subs-Graphics.php 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151
  1. <?php
  2. /**
  3. * This file deals with low-level graphics operations performed on images,
  4. * specially as needed for avatars (uploaded avatars), attachments, or
  5. * visual verification images.
  6. * It uses, for gifs at least, Gif Util. For more information on that,
  7. * please see its website.
  8. * TrueType fonts supplied by www.LarabieFonts.com
  9. *
  10. * Simple Machines Forum (SMF)
  11. *
  12. * @package SMF
  13. * @author Simple Machines http://www.simplemachines.org
  14. * @copyright 2014 Simple Machines and individual contributors
  15. * @license http://www.simplemachines.org/about/smf/license.php BSD
  16. *
  17. * @version 2.1 Alpha 1
  18. */
  19. if (!defined('SMF'))
  20. die('No direct access...');
  21. /**
  22. * downloads a file from a url and stores it locally for avatar use by id_member.
  23. * - supports GIF, JPG, PNG, BMP and WBMP formats.
  24. * - detects if GD2 is available.
  25. * - uses resizeImageFile() to resize to max_width by max_height, and saves the result to a file.
  26. * - updates the database info for the member's avatar.
  27. * - returns whether the download and resize was successful.
  28. *
  29. * @param string $url the full path to the temporary file
  30. * @param int $memID member ID
  31. * @param int $max_width
  32. * @param int $max_height
  33. * @return boolean whether the download and resize was successful.
  34. *
  35. */
  36. function downloadAvatar($url, $memID, $max_width, $max_height)
  37. {
  38. global $modSettings, $sourcedir, $smcFunc;
  39. $ext = !empty($modSettings['avatar_download_png']) ? 'png' : 'jpeg';
  40. $destName = 'avatar_' . $memID . '_' . time() . '.' . $ext;
  41. // Just making sure there is a non-zero member.
  42. if (empty($memID))
  43. return false;
  44. require_once($sourcedir . '/ManageAttachments.php');
  45. removeAttachments(array('id_member' => $memID));
  46. $id_folder = 1;
  47. $avatar_hash = '';
  48. $smcFunc['db_insert']('',
  49. '{db_prefix}attachments',
  50. array(
  51. 'id_member' => 'int', 'attachment_type' => 'int', 'filename' => 'string-255', 'file_hash' => 'string-255', 'fileext' => 'string-8', 'size' => 'int',
  52. 'id_folder' => 'int',
  53. ),
  54. array(
  55. $memID, 1, $destName, $avatar_hash, $ext, 1,
  56. $id_folder,
  57. ),
  58. array('id_attach')
  59. );
  60. $attachID = $smcFunc['db_insert_id']('{db_prefix}attachments', 'id_attach');
  61. // Retain this globally in case the script wants it.
  62. $modSettings['new_avatar_data'] = array(
  63. 'id' => $attachID,
  64. 'filename' => $destName,
  65. 'type' => 1,
  66. );
  67. $destName = $modSettings['custom_avatar_dir'] . '/' . $destName . '.tmp';
  68. // Resize it.
  69. if (!empty($modSettings['avatar_download_png']))
  70. $success = resizeImageFile($url, $destName, $max_width, $max_height, 3);
  71. else
  72. $success = resizeImageFile($url, $destName, $max_width, $max_height);
  73. // Remove the .tmp extension.
  74. $destName = substr($destName, 0, -4);
  75. if ($success)
  76. {
  77. // Remove the .tmp extension from the attachment.
  78. if (rename($destName . '.tmp', empty($avatar_hash) ? $destName : $path . '/' . $attachID . '_' . $avatar_hash . '.dat'))
  79. {
  80. $destName = empty($avatar_hash) ? $destName : $path . '/' . $attachID . '_' . $avatar_hash . '.dat';
  81. list ($width, $height) = getimagesize($destName);
  82. $mime_type = 'image/' . $ext;
  83. // Write filesize in the database.
  84. $smcFunc['db_query']('', '
  85. UPDATE {db_prefix}attachments
  86. SET size = {int:filesize}, width = {int:width}, height = {int:height},
  87. mime_type = {string:mime_type}
  88. WHERE id_attach = {int:current_attachment}',
  89. array(
  90. 'filesize' => filesize($destName),
  91. 'width' => (int) $width,
  92. 'height' => (int) $height,
  93. 'current_attachment' => $attachID,
  94. 'mime_type' => $mime_type,
  95. )
  96. );
  97. return true;
  98. }
  99. else
  100. return false;
  101. }
  102. else
  103. {
  104. $smcFunc['db_query']('', '
  105. DELETE FROM {db_prefix}attachments
  106. WHERE id_attach = {int:current_attachment}',
  107. array(
  108. 'current_attachment' => $attachID,
  109. )
  110. );
  111. @unlink($destName . '.tmp');
  112. return false;
  113. }
  114. }
  115. /**
  116. * Create a thumbnail of the given source.
  117. *
  118. * @uses resizeImageFile() function to achieve the resize.
  119. *
  120. * @param string $source
  121. * @param int $max_width
  122. * @param int $max_height
  123. * @return boolean, whether the thumbnail creation was successful.
  124. */
  125. function createThumbnail($source, $max_width, $max_height)
  126. {
  127. global $modSettings;
  128. $destName = $source . '_thumb.tmp';
  129. // Do the actual resize.
  130. if (!empty($modSettings['attachment_thumb_png']))
  131. $success = resizeImageFile($source, $destName, $max_width, $max_height, 3);
  132. else
  133. $success = resizeImageFile($source, $destName, $max_width, $max_height);
  134. // Okay, we're done with the temporary stuff.
  135. $destName = substr($destName, 0, -4);
  136. if ($success && @rename($destName . '.tmp', $destName))
  137. return true;
  138. else
  139. {
  140. @unlink($destName . '.tmp');
  141. @touch($destName);
  142. return false;
  143. }
  144. }
  145. /**
  146. * Used to re-econodes an image to a specifed image format
  147. * - creates a copy of the file at the same location as fileName.
  148. * - the file would have the format preferred_format if possible, otherwise the default format is jpeg.
  149. * - the function makes sure that all non-essential image contents are disposed.
  150. *
  151. * @param string $fileName
  152. * @param int $preferred_format = 0
  153. * @return boolean, true on success, false on failure.
  154. */
  155. function reencodeImage($fileName, $preferred_format = 0)
  156. {
  157. if (!resizeImageFile($fileName, $fileName . '.tmp', null, null, $preferred_format))
  158. {
  159. if (file_exists($fileName . '.tmp'))
  160. unlink($fileName . '.tmp');
  161. return false;
  162. }
  163. if (!unlink($fileName))
  164. return false;
  165. if (!rename($fileName . '.tmp', $fileName))
  166. return false;
  167. }
  168. /**
  169. * Searches through the file to see if there's potentialy harmful non-binary content.
  170. * - if extensiveCheck is true, searches for asp/php short tags as well.
  171. *
  172. * @param string $fileName
  173. * @param bool $extensiveCheck = false
  174. * @return true on success, false on failure.
  175. */
  176. function checkImageContents($fileName, $extensiveCheck = false)
  177. {
  178. $fp = fopen($fileName, 'rb');
  179. if (!$fp)
  180. fatal_lang_error('attach_timeout');
  181. $prev_chunk = '';
  182. while (!feof($fp))
  183. {
  184. $cur_chunk = fread($fp, 8192);
  185. // Though not exhaustive lists, better safe than sorry.
  186. if (!empty($extensiveCheck))
  187. {
  188. // Paranoid check. Some like it that way.
  189. if (preg_match('~(iframe|\\<\\?|\\<%|html|eval|body|script\W|[CF]WS[\x01-\x0C])~i', $prev_chunk . $cur_chunk) === 1)
  190. {
  191. fclose($fp);
  192. return false;
  193. }
  194. }
  195. else
  196. {
  197. // Check for potential infection
  198. if (preg_match('~(iframe|(?<!cellTextIs)html|eval|body|script\W|[CF]WS[\x01-\x0C])~i', $prev_chunk . $cur_chunk) === 1)
  199. {
  200. fclose($fp);
  201. return false;
  202. }
  203. }
  204. $prev_chunk = $cur_chunk;
  205. }
  206. fclose($fp);
  207. return true;
  208. }
  209. /**
  210. * Sets a global $gd2 variable needed by some functions to determine
  211. * whether the GD2 library is present.
  212. *
  213. * @return whether or not GD1 is available.
  214. */
  215. function checkGD()
  216. {
  217. global $gd2;
  218. // Check to see if GD is installed and what version.
  219. if (($extensionFunctions = get_extension_funcs('gd')) === false)
  220. return false;
  221. // Also determine if GD2 is installed and store it in a global.
  222. $gd2 = in_array('imagecreatetruecolor', $extensionFunctions) && function_exists('imagecreatetruecolor');
  223. return true;
  224. }
  225. /**
  226. * Checks whether the Imagick class is present.
  227. *
  228. * @return whether or not Imagick is available.
  229. */
  230. function checkImagick()
  231. {
  232. return class_exists('Imagick', false);
  233. }
  234. /**
  235. * Checks whether the MagickWand extension is present.
  236. *
  237. * @return whether or not MagickWand is available.
  238. */
  239. function checkMagickWand()
  240. {
  241. return function_exists('newMagickWand');
  242. }
  243. /**
  244. * See if we have enough memory to thumbnail an image
  245. *
  246. * @param array $sizes image size
  247. * @return whether we do
  248. */
  249. function imageMemoryCheck($sizes)
  250. {
  251. global $modSettings;
  252. // doing the old 'set it and hope' way?
  253. if (empty($modSettings['attachment_thumb_memory']))
  254. {
  255. setMemoryLimit('128M');
  256. return true;
  257. }
  258. // Determine the memory requirements for this image, note: if you want to use an image formula W x H x bits/8 x channels x Overhead factor
  259. // you will need to account for single bit images as GD expands them to an 8 bit and will greatly overun the calculated value. The 5 is
  260. // simply a shortcut of 8bpp, 3 channels, 1.66 overhead
  261. $needed_memory = ($sizes[0] * $sizes[1] * 5);
  262. // if we need more, lets try to get it
  263. return setMemoryLimit($needed_memory, true);
  264. }
  265. /**
  266. * Resizes an image from a remote location or a local file.
  267. * Puts the resized image at the destination location.
  268. * The file would have the format preferred_format if possible,
  269. * otherwise the default format is jpeg.
  270. *
  271. * @param string $source
  272. * @param string $destination
  273. * @param int $max_width
  274. * @param int $max_height
  275. * @param int $preferred_format = 0
  276. * @return whether it succeeded.
  277. */
  278. function resizeImageFile($source, $destination, $max_width, $max_height, $preferred_format = 0)
  279. {
  280. global $sourcedir;
  281. // Nothing to do without GD or IM/MW
  282. if (!checkGD() && !checkImagick() && !checkMagickWand())
  283. return false;
  284. static $default_formats = array(
  285. '1' => 'gif',
  286. '2' => 'jpeg',
  287. '3' => 'png',
  288. '6' => 'bmp',
  289. '15' => 'wbmp'
  290. );
  291. require_once($sourcedir . '/Subs-Package.php');
  292. // Get the image file, we have to work with something after all
  293. $fp_destination = fopen($destination, 'wb');
  294. if ($fp_destination && (substr($source, 0, 7) == 'http://' || substr($source, 0, 8) == 'https://'))
  295. {
  296. $fileContents = fetch_web_data($source);
  297. fwrite($fp_destination, $fileContents);
  298. fclose($fp_destination);
  299. $sizes = @getimagesize($destination);
  300. }
  301. elseif ($fp_destination)
  302. {
  303. $sizes = @getimagesize($source);
  304. $fp_source = fopen($source, 'rb');
  305. if ($fp_source !== false)
  306. {
  307. while (!feof($fp_source))
  308. fwrite($fp_destination, fread($fp_source, 8192));
  309. fclose($fp_source);
  310. }
  311. else
  312. $sizes = array(-1, -1, -1);
  313. fclose($fp_destination);
  314. }
  315. // We can't get to the file.
  316. else
  317. $sizes = array(-1, -1, -1);
  318. // See if we have -or- can get the needed memory for this operation
  319. // ImageMagick isn't subject to PHP's memory limits :)
  320. if (!(checkIMagick() || checkMagickWand()) && checkGD() && !imageMemoryCheck($sizes))
  321. return false;
  322. // A known and supported format?
  323. // @todo test PSD and gif.
  324. if ((checkImagick() || checkMagickWand()) && isset($default_formats[$sizes[2]]))
  325. {
  326. return resizeImage(null, $destination, null, null, $max_width, $max_height, true, $preferred_format);
  327. }
  328. elseif (checkGD() && isset($default_formats[$sizes[2]]) && function_exists('imagecreatefrom' . $default_formats[$sizes[2]]))
  329. {
  330. $imagecreatefrom = 'imagecreatefrom' . $default_formats[$sizes[2]];
  331. if ($src_img = @$imagecreatefrom($destination))
  332. {
  333. return 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);
  334. }
  335. }
  336. return false;
  337. }
  338. /**
  339. * Resizes src_img proportionally to fit within max_width and max_height limits
  340. * if it is too large.
  341. * If GD2 is present, it'll use it to achieve better quality.
  342. * It saves the new image to destination_filename, as preferred_format
  343. * if possible, default is jpeg.
  344. * @uses GD
  345. *
  346. * @param resource $src_img
  347. * @param string $destName
  348. * @param int $src_width
  349. * @param int $src_height
  350. * @param int $max_width
  351. * @param int $max_height
  352. * @param bool $force_resize = false
  353. * @param int $preferred_format = 0
  354. */
  355. function resizeImage($src_img, $destName, $src_width, $src_height, $max_width, $max_height, $force_resize = false, $preferred_format = 0)
  356. {
  357. global $gd2, $modSettings;
  358. if (checkImagick() || checkMagickWand())
  359. {
  360. static $default_formats = array(
  361. '1' => 'gif',
  362. '2' => 'jpeg',
  363. '3' => 'png',
  364. '6' => 'bmp',
  365. '15' => 'wbmp'
  366. );
  367. $preferred_format = empty($preferred_format) || !isset($default_formats[$preferred_format]) ? 2 : $preferred_format;
  368. if (checkImagick())
  369. {
  370. $imagick = New Imagick($destName);
  371. $src_width = empty($src_width) ? $imagick->getImageWidth() : $src_width;
  372. $src_height = empty($src_height) ? $imagick->getImageHeight() : $src_height;
  373. $dest_width = empty($max_width) ? $src_width : $max_width;
  374. $dest_height = empty($max_height) ? $src_height : $max_height;
  375. if ($default_formats[$preferred_format] == 'jpeg')
  376. $imagick->setCompressionQuality(!empty($modSettings['avatar_jpeg_quality']) ? $modSettings['avatar_jpeg_quality'] : 82);
  377. $imagick->setImageFormat($default_formats[$preferred_format]);
  378. $imagick->resizeImage($dest_width, $dest_height, Imagick::FILTER_LANCZOS, 1, true);
  379. $success = $imagick->writeImage($destName);
  380. }
  381. else
  382. {
  383. $magick_wand = newMagickWand();
  384. MagickReadImage($magick_wand, $destName);
  385. $src_width = empty($src_width) ? MagickGetImageWidth($magick_wand) : $src_width;
  386. $src_height = empty($src_height) ? MagickGetImageSize($magick_wand) : $src_height;
  387. $dest_width = empty($max_width) ? $src_width : $max_width;
  388. $dest_height = empty($max_height) ? $src_height : $max_height;
  389. if ($default_formats[$preferred_format] == 'jpeg')
  390. MagickSetCompressionQuality($magick_wand, !empty($modSettings['avatar_jpeg_quality']) ? $modSettings['avatar_jpeg_quality'] : 82);
  391. MagickSetImageFormat($magick_wand, $default_formats[$preferred_format]);
  392. MagickResizeImage($magic_wand, $dest_width, $dest_height, MW_LanczosFilter, 1, true);
  393. $success = MagickWriteImage($magick_wand, $destName);
  394. }
  395. return !empty($success);
  396. }
  397. elseif (checkGD())
  398. {
  399. $success = false;
  400. // Determine whether to resize to max width or to max height (depending on the limits.)
  401. if (!empty($max_width) || !empty($max_height))
  402. {
  403. if (!empty($max_width) && (empty($max_height) || $src_height * $max_width / $src_width <= $max_height))
  404. {
  405. $dst_width = $max_width;
  406. $dst_height = floor($src_height * $max_width / $src_width);
  407. }
  408. elseif (!empty($max_height))
  409. {
  410. $dst_width = floor($src_width * $max_height / $src_height);
  411. $dst_height = $max_height;
  412. }
  413. // Don't bother resizing if it's already smaller...
  414. if (!empty($dst_width) && !empty($dst_height) && ($dst_width < $src_width || $dst_height < $src_height || $force_resize))
  415. {
  416. // (make a true color image, because it just looks better for resizing.)
  417. if ($gd2)
  418. {
  419. $dst_img = imagecreatetruecolor($dst_width, $dst_height);
  420. // Deal nicely with a PNG - because we can.
  421. if ((!empty($preferred_format)) && ($preferred_format == 3))
  422. {
  423. imagealphablending($dst_img, false);
  424. if (function_exists('imagesavealpha'))
  425. imagesavealpha($dst_img, true);
  426. }
  427. }
  428. else
  429. $dst_img = imagecreate($dst_width, $dst_height);
  430. // Resize it!
  431. if ($gd2)
  432. imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $dst_width, $dst_height, $src_width, $src_height);
  433. else
  434. imagecopyresamplebicubic($dst_img, $src_img, 0, 0, 0, 0, $dst_width, $dst_height, $src_width, $src_height);
  435. }
  436. else
  437. $dst_img = $src_img;
  438. }
  439. else
  440. $dst_img = $src_img;
  441. // Save the image as ...
  442. if (!empty($preferred_format) && ($preferred_format == 3) && function_exists('imagepng'))
  443. $success = imagepng($dst_img, $destName);
  444. elseif (!empty($preferred_format) && ($preferred_format == 1) && function_exists('imagegif'))
  445. $success = imagegif($dst_img, $destName);
  446. elseif (function_exists('imagejpeg'))
  447. $success = imagejpeg($dst_img, $destName, !empty($modSettings['avatar_jpeg_quality']) ? $modSettings['avatar_jpeg_quality'] : 82);
  448. // Free the memory.
  449. imagedestroy($src_img);
  450. if ($dst_img != $src_img)
  451. imagedestroy($dst_img);
  452. return $success;
  453. }
  454. else
  455. // Without GD, no image resizing at all.
  456. return false;
  457. }
  458. /**
  459. * Copy image.
  460. * Used when imagecopyresample() is not available.
  461. * @param resource $dst_img
  462. * @param resource $src_img
  463. * @param int $dst_x
  464. * @param int $dst_y
  465. * @param int $src_x
  466. * @param int $src_y
  467. * @param int $dst_w
  468. * @param int $dst_h
  469. * @param int $src_w
  470. * @param int $src_h
  471. */
  472. function imagecopyresamplebicubic($dst_img, $src_img, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h)
  473. {
  474. $palsize = imagecolorstotal($src_img);
  475. for ($i = 0; $i < $palsize; $i++)
  476. {
  477. $colors = imagecolorsforindex($src_img, $i);
  478. imagecolorallocate($dst_img, $colors['red'], $colors['green'], $colors['blue']);
  479. }
  480. $scaleX = ($src_w - 1) / $dst_w;
  481. $scaleY = ($src_h - 1) / $dst_h;
  482. $scaleX2 = (int) $scaleX / 2;
  483. $scaleY2 = (int) $scaleY / 2;
  484. for ($j = $src_y; $j < $dst_h; $j++)
  485. {
  486. $sY = (int) $j * $scaleY;
  487. $y13 = $sY + $scaleY2;
  488. for ($i = $src_x; $i < $dst_w; $i++)
  489. {
  490. $sX = (int) $i * $scaleX;
  491. $x34 = $sX + $scaleX2;
  492. $color1 = imagecolorsforindex($src_img, imagecolorat($src_img, $sX, $y13));
  493. $color2 = imagecolorsforindex($src_img, imagecolorat($src_img, $sX, $sY));
  494. $color3 = imagecolorsforindex($src_img, imagecolorat($src_img, $x34, $y13));
  495. $color4 = imagecolorsforindex($src_img, imagecolorat($src_img, $x34, $sY));
  496. $red = ($color1['red'] + $color2['red'] + $color3['red'] + $color4['red']) / 4;
  497. $green = ($color1['green'] + $color2['green'] + $color3['green'] + $color4['green']) / 4;
  498. $blue = ($color1['blue'] + $color2['blue'] + $color3['blue'] + $color4['blue']) / 4;
  499. $color = imagecolorresolve($dst_img, $red, $green, $blue);
  500. if ($color == -1)
  501. {
  502. if ($palsize++ < 256)
  503. imagecolorallocate($dst_img, $red, $green, $blue);
  504. $color = imagecolorclosest($dst_img, $red, $green, $blue);
  505. }
  506. imagesetpixel($dst_img, $i + $dst_x - $src_x, $j + $dst_y - $src_y, $color);
  507. }
  508. }
  509. }
  510. if (!function_exists('imagecreatefrombmp'))
  511. {
  512. /**
  513. * It is set only if it doesn't already exist (for forwards compatiblity.)
  514. * It only supports uncompressed bitmaps.
  515. *
  516. * @param string $filename
  517. * @return resource, an image identifier representing the bitmap image
  518. * obtained from the given filename.
  519. */
  520. function imagecreatefrombmp($filename)
  521. {
  522. global $gd2;
  523. $fp = fopen($filename, 'rb');
  524. $errors = error_reporting(0);
  525. $header = unpack('vtype/Vsize/Vreserved/Voffset', fread($fp, 14));
  526. $info = unpack('Vsize/Vwidth/Vheight/vplanes/vbits/Vcompression/Vimagesize/Vxres/Vyres/Vncolor/Vcolorimportant', fread($fp, 40));
  527. if ($header['type'] != 0x4D42)
  528. false;
  529. if ($gd2)
  530. $dst_img = imagecreatetruecolor($info['width'], $info['height']);
  531. else
  532. $dst_img = imagecreate($info['width'], $info['height']);
  533. $palette_size = $header['offset'] - 54;
  534. $info['ncolor'] = $palette_size / 4;
  535. $palette = array();
  536. $palettedata = fread($fp, $palette_size);
  537. $n = 0;
  538. for ($j = 0; $j < $palette_size; $j++)
  539. {
  540. $b = ord($palettedata{$j++});
  541. $g = ord($palettedata{$j++});
  542. $r = ord($palettedata{$j++});
  543. $palette[$n++] = imagecolorallocate($dst_img, $r, $g, $b);
  544. }
  545. $scan_line_size = ($info['bits'] * $info['width'] + 7) >> 3;
  546. $scan_line_align = $scan_line_size & 3 ? 4 - ($scan_line_size & 3) : 0;
  547. for ($y = 0, $l = $info['height'] - 1; $y < $info['height']; $y++, $l--)
  548. {
  549. fseek($fp, $header['offset'] + ($scan_line_size + $scan_line_align) * $l);
  550. $scan_line = fread($fp, $scan_line_size);
  551. if (strlen($scan_line) < $scan_line_size)
  552. continue;
  553. if ($info['bits'] == 32)
  554. {
  555. $x = 0;
  556. for ($j = 0; $j < $scan_line_size; $x++)
  557. {
  558. $b = ord($scan_line{$j++});
  559. $g = ord($scan_line{$j++});
  560. $r = ord($scan_line{$j++});
  561. $j++;
  562. $color = imagecolorexact($dst_img, $r, $g, $b);
  563. if ($color == -1)
  564. {
  565. $color = imagecolorallocate($dst_img, $r, $g, $b);
  566. // Gah! Out of colors? Stupid GD 1... try anyhow.
  567. if ($color == -1)
  568. $color = imagecolorclosest($dst_img, $r, $g, $b);
  569. }
  570. imagesetpixel($dst_img, $x, $y, $color);
  571. }
  572. }
  573. elseif ($info['bits'] == 24)
  574. {
  575. $x = 0;
  576. for ($j = 0; $j < $scan_line_size; $x++)
  577. {
  578. $b = ord($scan_line{$j++});
  579. $g = ord($scan_line{$j++});
  580. $r = ord($scan_line{$j++});
  581. $color = imagecolorexact($dst_img, $r, $g, $b);
  582. if ($color == -1)
  583. {
  584. $color = imagecolorallocate($dst_img, $r, $g, $b);
  585. // Gah! Out of colors? Stupid GD 1... try anyhow.
  586. if ($color == -1)
  587. $color = imagecolorclosest($dst_img, $r, $g, $b);
  588. }
  589. imagesetpixel($dst_img, $x, $y, $color);
  590. }
  591. }
  592. elseif ($info['bits'] == 16)
  593. {
  594. $x = 0;
  595. for ($j = 0; $j < $scan_line_size; $x++)
  596. {
  597. $b1 = ord($scan_line{$j++});
  598. $b2 = ord($scan_line{$j++});
  599. $word = $b2 * 256 + $b1;
  600. $b = (($word & 31) * 255) / 31;
  601. $g = ((($word >> 5) & 31) * 255) / 31;
  602. $r = ((($word >> 10) & 31) * 255) / 31;
  603. // Scale the image colors up properly.
  604. $color = imagecolorexact($dst_img, $r, $g, $b);
  605. if ($color == -1)
  606. {
  607. $color = imagecolorallocate($dst_img, $r, $g, $b);
  608. // Gah! Out of colors? Stupid GD 1... try anyhow.
  609. if ($color == -1)
  610. $color = imagecolorclosest($dst_img, $r, $g, $b);
  611. }
  612. imagesetpixel($dst_img, $x, $y, $color);
  613. }
  614. }
  615. elseif ($info['bits'] == 8)
  616. {
  617. $x = 0;
  618. for ($j = 0; $j < $scan_line_size; $x++)
  619. imagesetpixel($dst_img, $x, $y, $palette[ord($scan_line{$j++})]);
  620. }
  621. elseif ($info['bits'] == 4)
  622. {
  623. $x = 0;
  624. for ($j = 0; $j < $scan_line_size; $x++)
  625. {
  626. $byte = ord($scan_line{$j++});
  627. imagesetpixel($dst_img, $x, $y, $palette[(int) ($byte / 16)]);
  628. if (++$x < $info['width'])
  629. imagesetpixel($dst_img, $x, $y, $palette[$byte & 15]);
  630. }
  631. }
  632. elseif ($info['bits'] == 1)
  633. {
  634. $x = 0;
  635. for ($j = 0; $j < $scan_line_size; $x++)
  636. {
  637. $byte = ord($scan_line{$j++});
  638. imagesetpixel($dst_img, $x, $y, $palette[(($byte) & 128) != 0]);
  639. for ($shift = 1; $shift < 8; $shift++) {
  640. if (++$x < $info['width']) imagesetpixel($dst_img, $x, $y, $palette[(($byte << $shift) & 128) != 0]);
  641. }
  642. }
  643. }
  644. }
  645. fclose($fp);
  646. error_reporting($errors);
  647. return $dst_img;
  648. }
  649. }
  650. /**
  651. * Writes a gif file to disk as a png file.
  652. * @param resource $gif
  653. * @param string $lpszFileName
  654. * @param int $background_color = -1
  655. * @return boolean, whether it was successful or not.
  656. */
  657. function gif_outputAsPng($gif, $lpszFileName, $background_color = -1)
  658. {
  659. if (!isset($gif) || @get_class($gif) != 'cgif' || !$gif->loaded || $lpszFileName == '')
  660. return false;
  661. $fd = $gif->get_png_data($background_color);
  662. if (strlen($fd) <= 0)
  663. return false;
  664. if (!($fh = @fopen($lpszFileName, 'wb')))
  665. return false;
  666. @fwrite($fh, $fd, strlen($fd));
  667. @fflush($fh);
  668. @fclose($fh);
  669. return true;
  670. }
  671. /**
  672. * Show an image containing the visual verification code for registration.
  673. * Requires the GD extension.
  674. * Uses a random font for each letter from default_theme_dir/fonts.
  675. * Outputs a gif or a png (depending on whether gif ix supported).
  676. *
  677. * @param string $code
  678. * @return false if something goes wrong.
  679. */
  680. function showCodeImage($code)
  681. {
  682. global $gd2, $settings, $user_info, $modSettings;
  683. // Note: The higher the value of visual_verification_type the harder the verification is - from 0 as disabled through to 4 as "Very hard".
  684. // What type are we going to be doing?
  685. $imageType = $modSettings['visual_verification_type'];
  686. // Special case to allow the admin center to show samples.
  687. if ($user_info['is_admin'] && isset($_GET['type']))
  688. $imageType = (int) $_GET['type'];
  689. // Some quick references for what we do.
  690. // Do we show no, low or high noise?
  691. $noiseType = $imageType == 3 ? 'low' : ($imageType == 4 ? 'high' : ($imageType == 5 ? 'extreme' : 'none'));
  692. // Can we have more than one font in use?
  693. $varyFonts = $imageType > 3 ? true : false;
  694. // Just a plain white background?
  695. $simpleBGColor = $imageType < 3 ? true : false;
  696. // Plain black foreground?
  697. $simpleFGColor = $imageType == 0 ? true : false;
  698. // High much to rotate each character.
  699. $rotationType = $imageType == 1 ? 'none' : ($imageType > 3 ? 'low' : 'high');
  700. // Do we show some characters inversed?
  701. $showReverseChars = $imageType > 3 ? true : false;
  702. // Special case for not showing any characters.
  703. $disableChars = $imageType == 0 ? true : false;
  704. // What do we do with the font colors. Are they one color, close to one color or random?
  705. $fontColorType = $imageType == 1 ? 'plain' : ($imageType > 3 ? 'random' : 'cyclic');
  706. // Are the fonts random sizes?
  707. $fontSizeRandom = $imageType > 3 ? true : false;
  708. // How much space between characters?
  709. $fontHorSpace = $imageType > 3 ? 'high' : ($imageType == 1 ? 'medium' : 'minus');
  710. // Where do characters sit on the image? (Fixed position or random/very random)
  711. $fontVerPos = $imageType == 1 ? 'fixed' : ($imageType > 3 ? 'vrandom' : 'random');
  712. // Make font semi-transparent?
  713. $fontTrans = $imageType == 2 || $imageType == 3 ? true : false;
  714. // Give the image a border?
  715. $hasBorder = $simpleBGColor;
  716. // The amount of pixels inbetween characters.
  717. $character_spacing = 1;
  718. // What color is the background - generally white unless we're on "hard".
  719. if ($simpleBGColor)
  720. $background_color = array(255, 255, 255);
  721. else
  722. $background_color = isset($settings['verification_background']) ? $settings['verification_background'] : array(236, 237, 243);
  723. // The color of the characters shown (red, green, blue).
  724. if ($simpleFGColor)
  725. $foreground_color = array(0, 0, 0);
  726. else
  727. {
  728. $foreground_color = array(64, 101, 136);
  729. // Has the theme author requested a custom color?
  730. if (isset($settings['verification_foreground']))
  731. $foreground_color = $settings['verification_foreground'];
  732. }
  733. if (!is_dir($settings['default_theme_dir'] . '/fonts'))
  734. return false;
  735. // Get a list of the available fonts.
  736. $font_dir = dir($settings['default_theme_dir'] . '/fonts');
  737. $font_list = array();
  738. $ttfont_list = array();
  739. while ($entry = $font_dir->read())
  740. {
  741. if (preg_match('~^(.+)\.gdf$~', $entry, $matches) === 1)
  742. $font_list[] = $entry;
  743. elseif (preg_match('~^(.+)\.ttf$~', $entry, $matches) === 1)
  744. $ttfont_list[] = $entry;
  745. }
  746. if (empty($font_list))
  747. return false;
  748. // For non-hard things don't even change fonts.
  749. if (!$varyFonts)
  750. {
  751. $font_list = array($font_list[0]);
  752. // Try use Screenge if we can - it looks good!
  753. if (in_array('AnonymousPro.ttf', $ttfont_list))
  754. $ttfont_list = array('AnonymousPro.ttf');
  755. else
  756. $ttfont_list = empty($ttfont_list) ? array() : array($ttfont_list[0]);
  757. }
  758. // Create a list of characters to be shown.
  759. $characters = array();
  760. $loaded_fonts = array();
  761. for ($i = 0; $i < strlen($code); $i++)
  762. {
  763. $characters[$i] = array(
  764. 'id' => $code{$i},
  765. 'font' => array_rand($font_list),
  766. );
  767. $loaded_fonts[$characters[$i]['font']] = null;
  768. }
  769. // Load all fonts and determine the maximum font height.
  770. foreach ($loaded_fonts as $font_index => $dummy)
  771. $loaded_fonts[$font_index] = imageloadfont($settings['default_theme_dir'] . '/fonts/' . $font_list[$font_index]);
  772. // Determine the dimensions of each character.
  773. $total_width = $character_spacing * strlen($code) + 40;
  774. $max_height = 0;
  775. foreach ($characters as $char_index => $character)
  776. {
  777. $characters[$char_index]['width'] = imagefontwidth($loaded_fonts[$character['font']]);
  778. $characters[$char_index]['height'] = imagefontheight($loaded_fonts[$character['font']]);
  779. $max_height = max($characters[$char_index]['height'] + 5, $max_height);
  780. $total_width += $characters[$char_index]['width'];
  781. }
  782. // Create an image.
  783. $code_image = $gd2 ? imagecreatetruecolor($total_width, $max_height) : imagecreate($total_width, $max_height);
  784. // Draw the background.
  785. $bg_color = imagecolorallocate($code_image, $background_color[0], $background_color[1], $background_color[2]);
  786. imagefilledrectangle($code_image, 0, 0, $total_width - 1, $max_height - 1, $bg_color);
  787. // Randomize the foreground color a little.
  788. for ($i = 0; $i < 3; $i++)
  789. $foreground_color[$i] = mt_rand(max($foreground_color[$i] - 3, 0), min($foreground_color[$i] + 3, 255));
  790. $fg_color = imagecolorallocate($code_image, $foreground_color[0], $foreground_color[1], $foreground_color[2]);
  791. // Color for the dots.
  792. for ($i = 0; $i < 3; $i++)
  793. $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);
  794. $randomness_color = imagecolorallocate($code_image, $dotbgcolor[0], $dotbgcolor[1], $dotbgcolor[2]);
  795. // Some squares/rectanges for new extreme level
  796. if ($noiseType == 'extreme')
  797. {
  798. for ($i = 0; $i < rand(1, 5); $i++)
  799. {
  800. $x1 = rand(0, $total_width / 4);
  801. $x2 = $x1 + round(rand($total_width / 4, $total_width));
  802. $y1 = rand(0, $max_height);
  803. $y2 = $y1 + round(rand(0, $max_height / 3));
  804. imagefilledrectangle($code_image, $x1, $y1, $x2, $y2, mt_rand(0, 1) ? $fg_color : $randomness_color);
  805. }
  806. }
  807. // Fill in the characters.
  808. if (!$disableChars)
  809. {
  810. $cur_x = 0;
  811. foreach ($characters as $char_index => $character)
  812. {
  813. // Can we use true type fonts?
  814. $can_do_ttf = function_exists('imagettftext');
  815. // How much rotation will we give?
  816. if ($rotationType == 'none')
  817. $angle = 0;
  818. else
  819. $angle = mt_rand(-100, 100) / ($rotationType == 'high' ? 6 : 10);
  820. // What color shall we do it?
  821. if ($fontColorType == 'cyclic')
  822. {
  823. // Here we'll pick from a set of acceptance types.
  824. $colors = array(
  825. array(10, 120, 95),
  826. array(46, 81, 29),
  827. array(4, 22, 154),
  828. array(131, 9, 130),
  829. array(0, 0, 0),
  830. array(143, 39, 31),
  831. );
  832. if (!isset($last_index))
  833. $last_index = -1;
  834. $new_index = $last_index;
  835. while ($last_index == $new_index)
  836. $new_index = mt_rand(0, count($colors) - 1);
  837. $char_fg_color = $colors[$new_index];
  838. $last_index = $new_index;
  839. }
  840. elseif ($fontColorType == 'random')
  841. $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]));
  842. else
  843. $char_fg_color = array($foreground_color[0], $foreground_color[1], $foreground_color[2]);
  844. if (!empty($can_do_ttf))
  845. {
  846. // GD2 handles font size differently.
  847. if ($fontSizeRandom)
  848. $font_size = $gd2 ? mt_rand(17, 19) : mt_rand(18, 25);
  849. else
  850. $font_size = $gd2 ? 18 : 24;
  851. // Work out the sizes - also fix the character width cause TTF not quite so wide!
  852. $font_x = $fontHorSpace == 'minus' && $cur_x > 0 ? $cur_x - 3 : $cur_x + 5;
  853. $font_y = $max_height - ($fontVerPos == 'vrandom' ? mt_rand(2, 8) : ($fontVerPos == 'random' ? mt_rand(3, 5) : 5));
  854. // What font face?
  855. if (!empty($ttfont_list))
  856. $fontface = $settings['default_theme_dir'] . '/fonts/' . $ttfont_list[mt_rand(0, count($ttfont_list) - 1)];
  857. // What color are we to do it in?
  858. $is_reverse = $showReverseChars ? mt_rand(0, 1) : false;
  859. $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]);
  860. $fontcord = @imagettftext($code_image, $font_size, $angle, $font_x, $font_y, $char_color, $fontface, $character['id']);
  861. if (empty($fontcord))
  862. $can_do_ttf = false;
  863. elseif ($is_reverse)
  864. {
  865. imagefilledpolygon($code_image, $fontcord, 4, $fg_color);
  866. // Put the character back!
  867. imagettftext($code_image, $font_size, $angle, $font_x, $font_y, $randomness_color, $fontface, $character['id']);
  868. }
  869. if ($can_do_ttf)
  870. $cur_x = max($fontcord[2], $fontcord[4]) + ($angle == 0 ? 0 : 3);
  871. }
  872. if (!$can_do_ttf)
  873. {
  874. // Rotating the characters a little...
  875. if (function_exists('imagerotate'))
  876. {
  877. $char_image = $gd2 ? imagecreatetruecolor($character['width'], $character['height']) : imagecreate($character['width'], $character['height']);
  878. $char_bgcolor = imagecolorallocate($char_image, $background_color[0], $background_color[1], $background_color[2]);
  879. imagefilledrectangle($char_image, 0, 0, $character['width'] - 1, $character['height'] - 1, $char_bgcolor);
  880. 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]));
  881. $rotated_char = imagerotate($char_image, mt_rand(-100, 100) / 10, $char_bgcolor);
  882. imagecopy($code_image, $rotated_char, $cur_x, 0, 0, 0, $character['width'], $character['height']);
  883. imagedestroy($rotated_char);
  884. imagedestroy($char_image);
  885. }
  886. // Sorry, no rotation available.
  887. else
  888. 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]));
  889. $cur_x += $character['width'] + $character_spacing;
  890. }
  891. }
  892. }
  893. // If disabled just show a cross.
  894. else
  895. {
  896. imageline($code_image, 0, 0, $total_width, $max_height, $fg_color);
  897. imageline($code_image, 0, $max_height, $total_width, 0, $fg_color);
  898. }
  899. // Make the background color transparent on the hard image.
  900. if (!$simpleBGColor)
  901. imagecolortransparent($code_image, $bg_color);
  902. if ($hasBorder)
  903. imagerectangle($code_image, 0, 0, $total_width - 1, $max_height - 1, $fg_color);
  904. // Add some noise to the background?
  905. if ($noiseType != 'none')
  906. {
  907. for ($i = mt_rand(0, 2); $i < $max_height; $i += mt_rand(1, 2))
  908. for ($j = mt_rand(0, 10); $j < $total_width; $j += mt_rand(1, 10))
  909. imagesetpixel($code_image, $j, $i, mt_rand(0, 1) ? $fg_color : $randomness_color);
  910. // Put in some lines too?
  911. if ($noiseType != 'extreme')
  912. {
  913. $num_lines = $noiseType == 'high' ? mt_rand(3, 7) : mt_rand(2, 5);
  914. for ($i = 0; $i < $num_lines; $i++)
  915. {
  916. if (mt_rand(0, 1))
  917. {
  918. $x1 = mt_rand(0, $total_width);
  919. $x2 = mt_rand(0, $total_width);
  920. $y1 = 0; $y2 = $max_height;
  921. }
  922. else
  923. {
  924. $y1 = mt_rand(0, $max_height);
  925. $y2 = mt_rand(0, $max_height);
  926. $x1 = 0; $x2 = $total_width;
  927. }
  928. imagesetthickness($code_image, mt_rand(1, 2));
  929. imageline($code_image, $x1, $y1, $x2, $y2, mt_rand(0, 1) ? $fg_color : $randomness_color);
  930. }
  931. }
  932. else
  933. {
  934. // Put in some ellipse
  935. $num_ellipse = $noiseType == 'extreme' ? mt_rand(6, 12) : mt_rand(2, 6);
  936. for ($i = 0; $i < $num_ellipse; $i++)
  937. {
  938. $x1 = round(rand(($total_width / 4) * -1, $total_width + ($total_width / 4)));
  939. $x2 = round(rand($total_width / 2, 2 * $total_width));
  940. $y1 = round(rand(($max_height / 4) * -1, $max_height + ($max_height / 4)));
  941. $y2 = round(rand($max_height / 2, 2 * $max_height));
  942. imageellipse($code_image, $x1, $y1, $x2, $y2, mt_rand(0, 1) ? $fg_color : $randomness_color);
  943. }
  944. }
  945. }
  946. // Show the image.
  947. if (function_exists('imagegif'))
  948. {
  949. header('Content-type: image/gif');
  950. imagegif($code_image);
  951. }
  952. else
  953. {
  954. header('Content-type: image/png');
  955. imagepng($code_image);
  956. }
  957. // Bail out.
  958. imagedestroy($code_image);
  959. die();
  960. }
  961. /**
  962. * Show a letter for the visual verification code.
  963. * Alternative function for showCodeImage() in case GD is missing.
  964. * Includes an image from a random sub directory of default_theme_dir/fonts.
  965. *
  966. * @param string $letter
  967. */
  968. function showLetterImage($letter)
  969. {
  970. global $settings;
  971. if (!is_dir($settings['default_theme_dir'] . '/fonts'))
  972. return false;
  973. // Get a list of the available font directories.
  974. $font_dir = dir($settings['default_theme_dir'] . '/fonts');
  975. $font_list = array();
  976. while ($entry = $font_dir->read())
  977. if ($entry[0] !== '.' && is_dir($settings['default_theme_dir'] . '/fonts/' . $entry) && file_exists($settings['default_theme_dir'] . '/fonts/' . $entry . '.gdf'))
  978. $font_list[] = $entry;
  979. if (empty($font_list))
  980. return false;
  981. // Pick a random font.
  982. $random_font = $font_list[array_rand($font_list)];
  983. // Check if the given letter exists.
  984. if (!file_exists($settings['default_theme_dir'] . '/fonts/' . $random_font . '/' . $letter . '.png'))
  985. return false;
  986. // Include it!
  987. header('Content-type: image/png');
  988. include($settings['default_theme_dir'] . '/fonts/' . $random_font . '/' . $letter . '.png');
  989. // Nothing more to come.
  990. die();
  991. }
  992. ?>