RE: Bad picture colors

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



My browsers "play" them.
Firefox 1.5.0.2
Internet Explorer 6.0.2900...

-----Original Message-----
From: nikos [mailto:nikos@xxxxxxx] 
Sent: Thursday, April 27, 2006 11:49 AM
To: PHP-mailist (PHP-mailist)
Subject: RE:  Bad picture colors

Im not sure if browsers can "play" pngs Dwight
Thnak you
  _____  

 
Γατσής Νίκος - Gatsis Nikos
Web developer
tel.: 2108256721 - 2108256722
fax: 2108256712
email: ngatsis@xxxxxxx
http://www.qbit.gr 

-----Original Message-----
From: Dwight Altman [mailto:dwight@xxxxxxxxxxxx] 
Sent: Thursday, April 27, 2006 7:41 PM
To: 'nikos'; 'PHP-mailist (PHP-mailist)'
Subject: RE:  Bad picture colors

Could it be related to quality in JPEG lossy compression?  Can you try PNG
instead?

-----Original Message-----
From: nikos [mailto:nikos@xxxxxxx] 
Sent: Thursday, April 27, 2006 11:28 AM
To: PHP-mailist (PHP-mailist)
Subject:  Bad picture colors

Hello list

I use the following code to shrink some photos.

$directory='/var/www/html/offroads/tmp/';
	$dir=opendir($directory);
	while($file=readdir($dir)) {
		$dirfile=$directory.$file;
		if(is_file($dirfile)) {
			copy($dirfile,$directory."sm/sm_".$file);
			$imgReal = ImageCreateFromJPEG($dirfile);
			$x = ImagesX($imgReal);
			$y = ImagesY($imgReal);
			$newX=$x*0.1783;
			$newY=$y*0.1783;			
			$img = ImageCreate($newX,$newY);
			ImageCopyResized($img, $imgReal, 0, 0, 0, 0, $newX,
$newY, $x, $y);
			//$newimg=imagecolorstotal($img);
			ImageJPEG($img,$directory."sm/sm_".$file);
			clearstatcache();
		}
	}
	closedir($dir);

My problem is that the color results are very bad. How can I take picture
with good colors?

Thank you

-- 

-- 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux