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 are the Formatting and Printing Strings available in PHP?
Can we use onclick in submit button?
How do you use end in python?
Why is php so popular?
How do you parse and process html/xml in php?
Why namespace is used in php?
Who is the father of php and what is the current version of php and mysql?
How is csrf token generated?
what is the difference between mysql_fetch_array() and mysql_fetch_row()?
How is a session id generated?
how to use between operator when retrieve from database(format-2008-jun-06)
What is the use of mysql_fetch_assoc in php?