what are in image creating functions in php

Answers were Sorted based on User's Feedback



what are in image creating functions in php..

Answer / harsh

GD library

Is This Answer Correct ?    10 Yes 2 No

what are in image creating functions in php..

Answer / guest

yes

Is This Answer Correct ?    4 Yes 2 No

what are in image creating functions in php..

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

what are in image creating functions in php..

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 in image creating functions in php..

Answer / munesh singh tomar

imagecreate(W,H)

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More PHP Interview Questions

What is a php array?

0 Answers  


What is cookies? How to create cookies in php?

0 Answers  


What is scope of variable in php?

0 Answers  


How to concatenate two strings in php?

0 Answers  


What is the exact Diff. between include_once() and require_once() in PHP?

12 Answers  






What is the Diff. Between echo() and Print() in PHP?

29 Answers   CoreNet, Priya, QueenZend, Sky InfoTech, Syntel,


what is different between PHP and Asp.net?

1 Answers  


What would occur if a fatal error was thrown in your php program?

0 Answers  


Tell me what is the default session time in php?

0 Answers  


Write a program to get second highest number in an array using php?

0 Answers  


What are the reasons for selecting lamp (linux, apache, mysql, PHP) instead of combination of other software programmes, servers and operating systems?

3 Answers  


What is putenv?

0 Answers  


Categories