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
https://forums.phpfreaks.com/topic/250114-uploading-image-properties-to-database/
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;
	}

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.