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 laravel php?
HOW we can use css
Which function is used in php to check the data type of any variable?
What is session and why do we use it?
How can we get the properties (size, type, width, height) of an image using PHP image functions?
How to link one site backend to another site frontend?
Why is php used?
Is PHP an open source software?
What are the different types of array in php?
How can i send a HTML file to mail account.
what use of <?php
what are the errors and when we get that particular errors.and who will give that errors