Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > PHP
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

PHP PHP for some can be one of the hardest website programming codes, so do you need help on your PHP script, if it is php4, php5 or lower this is the place for you for any PHP help.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 3:11 PM   #1
krzys_iek
 
krzys_iek's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Image Sharpen , php ?

Hi !

I know it is possible to sharpen image with php, how can I do this ?

Can someone write an exampe , "how to" sharpen image ?

I have got such code (it resizes an image, but resized one needs sharpening
to look cool..):

case 1:
// Bild wird proportional verkleinert in das neue Bild kopiert
if ($new_width > 0) $x = $new_width / $width;
if ($new_height > 0) $y = $new_height / $height;

if (($y > 0 && $y < $x) || $x == 0) $x = $y;
$width_big = $width * $x;
$height_big = $height * $x;

if ($new_width > 0 && $new_width > $width_big) $dst_width =
$new_width;
else $dst_width = $width_big;
if ($new_height > 0 && $new_height > $height_big) $dst_height =
$new_height;
else $dst_height = $height_big;

// copy new picture into center of $dst_img
if ($dst_width > $width_big) $dstX=($dst_width - $width_big)/2;
else $dstX = 0;
if ($dst_height > $height_big) $dstY=($dst_height -
$height_big)/2;
else $dstY = 0;
switch (IN_GD_LIB_VERSION) {
case '2':
$dst_img = imagecreatetruecolor($dst_width,$dst_height);
$colorallocate = ImageColorAllocate ($dst_img,
IN_IMAGE_BGCOLOUR_R, IN_IMAGE_BGCOLOUR_G, IN_IMAGE_BGCOLOUR_B);

imagefilledrectangle($dst_img,0,0,$dst_width,$dst_ height,$colorallocate);

imagecopyresampled($dst_img,$src_img,$dstX,$dstY,0 ,0,$width_big,$height_big,
imagesx($src_img),imagesy($src_img));
if ($in_debug=="true") echo "<br> GD-LIB 2 - Generated new
Pic";
break;
default:
$dst_img = imagecreate($dst_width,$dst_height);
ImageColorAllocate ($dst_img,
IN_IMAGE_BGCOLOUR_R,IN_IMAGE_BGCOLOUR_G, IN_IMAGE_BGCOLOUR_B);

imagecopyresized($dst_img,$src_img,$dstX,$dstY,0,0 ,$width_big,$height_big,im
agesx($src_img),imagesy($src_img));
if ($in_debug=="true") echo "<br> GD-LIB 1 - Generated new
Pic";
}
break;



and want to add (where?) some code to sharpen the image (It will look much
better afterwords)

than you (I have apache 2, php 4.2.3, running windows !!)

regards (turn a blind eye on my english ;P)


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 07-01-2007, 3:11 PM   #2
Juz
 
Juz's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Image Sharpen , php ?

http://www.php.net/manual/en/ref.image.php



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 3:12 PM   #3
krzys_iek
 
krzys_iek's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Image Sharpen , php ?

Juz wrote:
> http://www.php.net/manual/en/ref.image.php


I can't find sharpen function ^^^^
.... I am a looser , can you help ?



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 3:13 PM   #4
krzys_iek
 
krzys_iek's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default Image Sharpen , php ?


Hi

>
> Just a thought... have you checked to make sure that it's using GD2
> rather than 1.8.x? (ie: executing the ImageCreateTrueColor() function
> rather than ImageCreate() ?)


No, It is not a my code... it is a part of someones idea

>
> Has 'GD2.dll' (I think it's named) been uncommented from your php.ini
> file?


Yup, it is :

....
;extension=php_filepro.dll
;extension=php_gd.dll
extension=php_gd2.dll
;extension=php_gettext.dll
;extension=php_hyperwave.dll
....

> Neither of these maybe be a solution to your issue, but just a
> thought =)
>


This code works, it makes input image smaller but adding a bit of sharpen
would make it look much better ( try this in photoshop - smaller needs to by
sharp to look "cool" for human eye , imho)

I have seen image magic php addon but I can't make it work under windows


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: , ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I curve or distort a flat label image to fit a round bottle image? Steen Alexandersen Graphics in general 1 11-15-2008 2:05 AM
Can I make the container DIV of an image not taller than the image (HTML 4.01)? Vince C. HTML 1 07-01-2007 1:59 PM
mirroring an image bdchmura Graphics in general 0 06-11-2007 9:43 PM
image maps Kingdom Graphics in general 0 06-11-2007 6:35 PM


Featured Websites




All times are GMT +1. The time now is 7:09 PM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98