Jump to content

Uploading image properties to database


ryanwood4

Recommended Posts

Hi,

 

I'm not 100% sure if this is HTML, PHP or Javascript, but my best guess is PHP.

 

When you upload an image on Facebook, it automatically gathers the data about the image, i.e. size, device used (i.e. Canon, iPhone), title and description. It then outputs this on the page.

 

Is there anyway to do this with PHP, instead of having to type all the information out again and upload that with the photo to a database?

 

Cheers.

Link to comment
Share on other sites

Here's the code I use using getimagesize()

 

// Calulate the details of the original
	// define width, height & type - type is stored as a # 1-gif, 2-jpg, 3-png
	list($width,$height,$type) = getimagesize($original); // getimagesize returns 4 elements, list takes the first 3
	// calculate the scaling ratio
	if ($width <= MAX_WIDTH && $height <= MAX_HEIGHT) {
		$ratio = 1;
	} elseif ($width > $height) {
		$ratio = MAX_WIDTH/$width;
	} else {
		$ratio = MAX_HEIGHT/$height;
	}

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.