2009-10-31 Steffen Kamper <info@sk-typo3.de>
+ * Fixed bug #12393: Log deprecated method call in t3lib_stdgraphic and remove the method in 4.4 (thanks to Xavier Perseguers)
* Fixed bug #12394: Log deprecated method call in t3lib_tceforms_inline and remove the methods in 4.4 (thanks to Xavier Perseguers)
2009-10-30 Francois Suter <francois@typo3.org>
* @param string The filename to write to
* @return mixed The output of either imageGif, imagePng or imageJpeg based on the filename to write
* @see imageWrite()
- * @deprecated since TYPO3 4.0
+ * @deprecated since TYPO3 4.0, this function will be removed in TYPO3 4.5.
*/
function imageGif($destImg, $theImage) {
+ t3lib_div::logDeprecatedFunction();
+
return $this->imageWrite($destImg, $theImage);
}
*
* @param string Image filename
* @return pointer Image Resource pointer
- * @deprecated since TYPO3 4.0
+ * @deprecated since TYPO3 4.0, this function will be removed in TYPO3 4.5.
*/
function imageCreateFromGif($sourceImg) {
+ t3lib_div::logDeprecatedFunction();
+
return $this->imageCreateFromFile($sourceImg);
}