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 |
write a program to print [123] [456] [789] note : braces also need to be printed
How should a model be structured in mvc?
What is slim framework?
How to create the PHP Script to Calculate the Age Using the Inputs Of our Birth date and the Current date?
What is url encoding and decoding in php?
What are the advantages of using php?
Does php have block scope?
When is a conditional statement ended with an endif?
If the variable $var1 is set to 10 and the $var2 is set to the character var1, what's the value of $$var2?
Who is the father of PHP and explain the changes in PHP versions?
13 Answers Befree, iMark Group, Netizen,
Which escape sequences can be used in single quoted strings in php?
What is the use of post in php?