| TOTAL: 21 Page: 1 of 2 |
|
PHP Script Image of the day
In this script shows you how to display image of the day. You can adapt this script to display quote of the day, knowledge of the day or something else you want. You don't have to change image everyday just change images once a week

| Hits: | 57 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-08-31 |
Get the width and height of an image using a function in PHP
PHP provides a function to get the width and height of an image. The getimagesize() function will determine the size of image file including flash file(swf).

| Hits: | 39 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-08-31 |
PHP Resize Image
This tutorial will demonstrate how to resize images with PHP. The ability to resize images is useful for creating thumbnails for image galleries. Resizing an image involves calculating the target dimensions, loading the existing source image, creating a new image for the output, copying the resized source image into the new image, and saving the new image file.

| Hits: | 32 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2009-08-21 |
print random image from a folder
This is a tutorial that will show you how to create the simplest banner rotate system. The images are stored in a folder and are randomly displayed.

| Hits: | 26 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2009-07-22 |
Generate Images with Round Corners On-The-Fly Using PHP and GD Library
The following code sample demonstrates the use of GD library to apply round corners on an image. It allows you to apply round corners of any size and color on a GIF, JPEG or PNG image.

| Hits: | 55 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-05-15 |
Watermark Your Images with Text Using PHP and GD Library
The following code sample demonstrates the use of PHP and GD library to watermark images on the fly. The method demonstrated here to watermark an uploaded image is to render a partially transparent line of text over the original image.

| Hits: | 34 | Platforms: | Windows |
| Ratings: | Last Updated: | 2009-05-13 |
Image Roation with PHP
This tutorial will show you how to rotate an image in your PHP scripts. You'll need to have the GD library installed to be able to use some of the functions we use in this guide, though this is included with most PHP installations so there's a chance you'll have it.

| Hits: | 29 | Platforms: | Windows |
| Ratings: | Last Updated: | 2009-05-13 |
Create image with PHP / GD library, And Adding Fonts 3.0
GD Library is one of the cool features started from PHP 3.0 , It`s helps create image on the fly , It just needs PHP and GD library Installed on the server.

| Hits: | 25 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2009-05-13 |
Resize Images Using PHP and GD Library
The script first saves the uploaded image in a specific location, it then generates a thumbnail version of the image and finally saves the generated thumbnail image in JPEG format.

| Hits: | 30 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2009-05-09 |
How to center a text on an image using GD
This is a snippet which centers a text on an image using the GD Library.

| Hits: | 46 | Platforms: | Windows |
| Ratings: | Last Updated: | 2008-10-19 |
PHP Form Image Upload
This tutorial shows you how to upload an image on your server using PHP and html forms. You will also learn how to verify if the uploaded file is an image (checking the extension), if it doesn't overtakes a size limit and how to change the uploaded file name.

| Hits: | 110 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-07-27 |
Watermarking on the fly with PHP
PHP, coupled with Apache rewriting, lets watermark "on the fly" and transparently, without modifying the original image.

| Hits: | 53 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-08-16 |
Creating a simple photo gallery 1.0
In this tutorial I will show you how to create a simple photo gallery. The script creates thumbnail images if needed and displays all images in the given directory.

| Hits: | 96 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2007-04-20 |
Image Watermark
This tutorial shows you how you can add a watermark image over images that are uploaded though a form.

| Hits: | 58 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-04-20 |
Get the width and height of an image using a function in PHP
This is a very useful function in PHP, I found it on php.net PHP provides function to get the width and height of an image. The getimagesize() function will determine the size of image file including flash file(swf).

| Hits: | 171 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
PHP Script Image of the day
In this script shows you how to display image of the day. You can adapt this script to display quote of the day, knowledge of the day or something else you want. You don't have to change image everyday just change images once a week.

| Hits: | 202 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Force download for PDF, JPG, GIF directly from the web browser
When a user clicks on a link to a JPG file, PDF file and other kind of files from a website, the web browser normally open the file inside it. This sometimes is annoying, for example, when the browser opens a PDF file this make the computer works slowly while the PDF loads. Another reason this is annoying is that maybe you want to store the files on your computer and use or read later. Some webmasters try to avoid this problem and force download using .zip files, but this is not an elegant so

| Hits: | 111 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Cropping with GD
Thumbnails are something we use all the time. The problem is that often we just resize them down. Depending on the size of the image, this can make the thumbnail almost useless. To get around this, sometimes cropping is the answer. I actually thing a cropped thumbnail can be more effective because it doesn't show the entire image, making you more interested in seeing the full image. As it turns out, GD is very capable of cropping images as well as resizing them. I've taken both methods to creat

| Hits: | 173 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Introduction to the GD library - How to create a simple image and add text
In this tutorial you will learn how to create images on the fly using PHP's GD library. This will be a basic tutorial showing you how to create an image, and display some text on it. Because we are creating an image, we need to tell the browser to treat the PHP file as an image, and not HTML, so we need to set a content type.

| Hits: | 137 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Create Thumbnail with PHP
One example could be if you let your visitors upload an image of themself when they register. For different reasons it could be important to make sure the images have a specific size, so they don't mess upp hte design of your layout. Another example could be if you have a photo gallery for your self, then it's nice to have the same size for images. Together with standard PHP installations you get something that is called GD. This package is made for creating and modifying images directly from P

| Hits: | 87 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |