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 |
What is the use of post in php?
What are the ways to include file in php?
How do you pass a variable by value?
How can i execute PHP File using Command Line?
What is a persistent cookie in php?
How to find a length of a string in php?
How to include variables in double-quoted strings?
What does $_env means?
How to retrieve values out of an array?
what is the difference between php and my sql
Who created numbers?
Why sessions are used in php?