From cc6f653c5a11ed633b5f45e8b60d00a04904ffb4 Mon Sep 17 00:00:00 2001
From: amemo <amemo@rezo.net>
Date: Mon, 25 Aug 2008 21:42:58 +0000
Subject: [PATCH] autodoc

---
 ecrire/inc/filtres_images.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ecrire/inc/filtres_images.php b/ecrire/inc/filtres_images.php
index b12f6255f1..cceeb82913 100644
--- a/ecrire/inc/filtres_images.php
+++ b/ecrire/inc/filtres_images.php
@@ -2764,12 +2764,14 @@ function produire_image_typo() {
 //        available at http://phpthumb.sourceforge.net     ///
 //////////////////////////////////////////////////////////////
 class phpthumb_functions {
+// http://doc.spip.org/@GetPixelColor
 	function GetPixelColor(&$img, $x, $y) {
 		if (!is_resource($img)) {
 			return false;
 		}
 		return @ImageColorsForIndex($img, @ImageColorAt($img, $x, $y));
 	}
+// http://doc.spip.org/@LittleEndian2String
 	function LittleEndian2String($number, $minbytes=1) {
 		$intstring = '';
 		while ($number > 0) {
@@ -2778,6 +2780,7 @@ class phpthumb_functions {
 		}
 		return str_pad($intstring, $minbytes, "\x00", STR_PAD_RIGHT);
 	}
+// http://doc.spip.org/@GD2ICOstring
 	function GD2ICOstring(&$gd_image_array) {
 		foreach ($gd_image_array as $key => $gd_image) {
 
-- 
GitLab