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 session cookies php?
How to create a session? How to remove data from a session?
What are the different opening and closing tags available in PHP?
Define anonymous classes in php7?
What are the advantages and disadvantages of cascade style sheets?
What is difference between sql and php?
write function of the sentence traversal passing the parameter, e.g input:this is input sentence. output:sentence input is this.
What is the use of callback in php?
What is the Pipe Symbol represented?
Tell me will a comparison of an integer 12 and a string "13" work in php?
how can i upload only pdf files in my website? files has not a pdf extension mantioned
How to get a random value from a php array?