what are in image creating functions in php
Answers were Sorted based on User's Feedback
Answer / yukti vig
extension=php_gd2.dll
you need to open an extension for gdlibrary in the php.ini
file. and then use simple image functions as suggested by
Munesh
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sanjeev kumar
image creating functions
dir()
Example :-
<?php
//Open images directory
$dir = dir("images");//List files in images directory
while (($file = $dir->read()) !== false)
{
echo "filename: " . $file . "<br />";
}$dir->close();
?>
Is This Answer Correct ? | 3 Yes | 1 No |
How would you determine the size of a file in php?
What is php how it works?
What types of loops exist in php?
What is the use of trim in php?
What is the exact Diff. between include_once() and require_once() in PHP?
Is php a float?
I just installed php 5.3.1 in my linux server and now my old work which i used to write with tags is not working at all.. Please help me out.. How can i resolve this??
What is the importance of php?
what is the difference between php and my sql
What is a base url?
Do you know what is php?
How to send a cookie to the browser?