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 nl2br() in php?
Is php better than python?
What is in php 7?
How to create connection in php?
In How many ways can u represent Not equal?Give Syntax of all ways..
What is the difference between query and question?
What is the w3c?
Which is better php praogramming or cad/cam scope wise and also salaray wise?
What is meant by urlencode and urldecode?
What are the encryption functions available in PHP?
how to convert PHP code in to java code
How can we get the error when there is a problem to upload a file?