php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11020 GD not working on digitalcamera jpg's
Submitted: 2001-05-22 12:04 UTC Modified: 2001-05-22 18:40 UTC
From: dat8hywb at stud dot hitos dot no Assigned:
Status: Closed Package: GD related
PHP Version: 4.0.5 OS: Win 2000
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: dat8hywb at stud dot hitos dot no
New email:
PHP Version: OS:

 

 [2001-05-22 12:04 UTC] dat8hywb at stud dot hitos dot no
Look at the bugs for GetImageSize. I guess it's the same JPG problem with GD functions.

This function works perfect with most jpg's but when uploading pictures from digital cameras it does nothing. 

<pre>
function resize($bildet, $forholdstall) {
	
	$size = GetImageSize("$bildet");
	$width = $size[0];
	$height = $size[1];
	echo "Skalerer...";
	//regner ut forholdstall
	if ($width > $height) # resize ny bildest?rrelse 
	{
		$utregnettall = ($width / $forholdstall);
		$width = $forholdstall;
		$height = (int)($height / $utregnettall);
	}
	else  
	{
		$utregnettall = ($height / $forholdstall);
		$height = $forholdstall;
		$width = (int)($width / $utregnettall);
	}
	
	if (strpos("$bildet", ".jpg") || strpos("$bildet", ".jpeg")) {
		$status = true;
		$img_in = ImageCreateFromJPEG("$bildet");

		// den resiza fila skal v?re s? mye mindre:
		$img_out = ImageCreate($width, $height);
		ImageCopyResized($img_out, $img_in,0,0,0,0, $width, $height, $size[0], $size[1]);
		ImageJPEG($img_out, "$bildet");
		ImageDestroy($img_in);
		ImageDestroy($img_out);
		
	}#if
	else {
		$status = false;
	}
	$retur = array(
		"error" => $status,
		"height" => $height,
		"width" => $width
		);
	return $retur;
}# function resize
</pre>

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-05-22 18:40 UTC] sniper@php.net
The getimagesize() is fixed in CVS.

--Jani

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 16:01:28 2024 UTC