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 post and get method??
Does php support multiple inheritances?
Tell me what is htaccess?
How to write a program to make chess?
How long will it take to learn php?
What is the use of curl()?
What is a controller in programming?
What is php explain?
How can we submit a form without a submit button?
2 Answers Rushmore Consultancy,
What is framework? How it works? What is advantage?
Is php difficult to learn?
What is the name of the scripting engine that powers PHP?