Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > Web Development
You last visited: Today at 13:24

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Hilfe bei imageresize

Discussion on Hilfe bei imageresize within the Web Development forum part of the Coders Den category.

Reply
 
Old   #1
 
Hiris's Avatar
 
elite*gold: 99
Join Date: Apr 2011
Posts: 730
Received Thanks: 236
Hilfe bei imageresize

Hejho,
Ich hab ein kleines Problem, hab nämlich bilder die ich auf 32x32 formate für die ausgabe verkleinern muss, hab das ganze mit folgendem manual code versucht

PHP Code:
<?php
// The file
$filename 'test.jpg';
$percent 0.5;

// Content type
header('Content-Type: image/jpeg');

// Get new dimensions
list($width$height) = getimagesize($filename);
$new_width $width $percent;
$new_height $height $percent;

// Resample
$image_p imagecreatetruecolor($new_width$new_height);
$image imagecreatefromjpeg($filename);
imagecopyresampled($image_p$image0000$new_width$new_height$width$height);

// Output
imagejpeg($image_pnull100);
?>
Dabei habe ich:

$new_width = 32;
$new_height = 32;
eingestellt und den Pfad $filename = 'test.jpg'; auf $filename = '/img/test.jpg';
angepasst. Sowohl mit als auch ohne die änderungen kommt bei der ausgabe ein extrem langer maschinen code anstelle eines Bildes. Des weiteren lässt es sich mit imagejpeg($image_p, null, 100); schlecht in einem <image src""> als src ausgeben...
Hiris is offline  
Old 12/09/2012, 22:02   #2
 
Hiris's Avatar
 
elite*gold: 99
Join Date: Apr 2011
Posts: 730
Received Thanks: 236
Keiner eine Idee? >_<
Hiris is offline  
Old 12/09/2012, 22:57   #3
 
kissein's Avatar
 
elite*gold: 0
Join Date: Sep 2005
Posts: 426
Received Thanks: 87
Schonmal in Errorlog nachgesehen ? Gibts Fehlermeldungen ?
kissein is offline  
Old 12/11/2012, 18:01   #4
 
Hiris's Avatar
 
elite*gold: 99
Join Date: Apr 2011
Posts: 730
Received Thanks: 236
nichts >o>
Hiris is offline  
Old 12/11/2012, 18:37   #5
 
NotEnoughForYou's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 3,407
Received Thanks: 2,024
Gdlib vorhanden ?
NotEnoughForYou is offline  
Old 12/11/2012, 19:13   #6
 
Hiris's Avatar
 
elite*gold: 99
Join Date: Apr 2011
Posts: 730
Received Thanks: 236
Yap, hab in der PhP info nachgeschaut
Hiris is offline  
Reply


Similar Threads Similar Threads
Imagecopy/Imageresize Frage
10/12/2012 - Web Development - 3 Replies
Hallo, bei meinem momentanen Website Projekt will ich unter das bild, eine art Watermark hinzufügen wie hier der fall: http://img.ragecomic.de/1348583865.jpg Also das grau hinterlegte mit dem more on ragecomic.de meine ich. genau das selbe will ich nun für meine Website realisieren, bekomme es aber nicht hin.



All times are GMT +2. The time now is 13:24.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.