answersLogoWhite

0

What is php image size?

Updated: 8/20/2019
User Avatar

Wiki User

10y ago

Best Answer

PHP can create images of different sizes. It depends on a particular image.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is php image size?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is image size?

PHP can create images of different sizes. It depends on a particular image.


How do you get PHP codes for writing on an image?

You can use the GD extension for PHP to edit image files.


How do you make a document in PHP about image manipulation?

I have had a lot of experience with image modification modules with PHP. In order to perform image manipulation in PHP you need an image processing module installed such as GD2 or imagemagik. GD2 comes with PHP and can be installed fairly easily if it is not already installed. You can follow the PHP GD manually for the usage of these functions.


How do you perform image slideshow in php?

Image Slideshow is very difficult using php. Instead store the image files in an image folder and apply slideshow to them using javascript. Here's a reference to automatic slideshow using javascript: How_do_you_create_slide_show_using_javascript_code


What should you do to enable image functions in PHP?

Image creating and manipulating in PHP can be done with multiple libraries, some officially supported by PHP and some made by third parties. A common library, especially for developers new to image libraries, is the GD package. You must include the library you wish to use upon installation of PHP (if it is officially supported), or manually include the library into your scripts.


How do you save image url in database by using php?

If you can get the image url then just assign it to a php variable say: $image = (See related Link) Then you just have to add '$image' to the insert statement of your sql query Note: It would be better to store the folder path where your image is stored. That way your image will not be lost if your site moves to another server.


How do you upload an image using PHP?

You upload the image in HTML using a form that includes the following field <input type="file" name="fileUpload" /> After the form is submitted, you can access it with the $_POST variable as $_POST['fileUpload'] http://www.tutorialsscripts.com/free-php-scripts/file-and-directory-script/image-upload.php


How do you change embedded document size 8.5x11 to fit image size 6x9 in photo-shop?

image-Image Size


How do you restore the value of textbox from one page to another in PHP?

You could do something like this: pg.1.htm <form method="post" action="pg2.php"> <input type="text" name="txt1" size="20" /> </form> pg2.php <?php $textbox = $_POST['txt1']; ?> <input type="text" name="txt2" size="20" value="<?php echo $textbox; ?>" /> Is that what you were asking for?


How do you link an image to a PHP file?

Wrap the image tag in an anchor link <a href="mypage.php><img src="mypic.gif" width="10" height="10" /></a>


How can you change the size of the picture in the document?

In Photoshop go to Image > Image Size.


Why php not able to fetch the image from 'My Picture' in win XP to Script and diplay it?

PHP is a server-side language, and doesn't have access to your hard-drive. You have to get the user to upload the picture to the server, first.