Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » PHP » localhost

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: [ 1 ] > 2 <
010
28.04.2006, 17:13 Uhr
ref



das problem habe ich auch gelöst das orginal war so:

PHP 4:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<!-- Creation Date: <?=Date("d/m/Y")?> -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Dev-PHP 1.9.4">
<title>Document Title</title>
</head>
<body>
<?php
$image=imagecreate(300,150);
$farbe_body=imagecolorallocate($image,222,222,222);

Header("Content-type: image/png");
imagepng($image);

?>
</body>
</html>



ohne html so funktioniert:

PHP 4:
<?php
$image=imagecreate(300,150);
$farbe_body=imagecolorallocate($image,222,222,222);
Header("Content-type:image/png");
imagepng($image);
?>



ohne white spaces.
aber was wenn ich innerhalb des html codes , also wie das erste beispiel mit html zeigen lassen will
geht nicht mit html??????????
--
Man kann ein Problem nicht mit der gleichen Denkweise lösen, mit der es erschaffen wurde. (Albert Einstein)

Dieser Post wurde am 28.04.2006 um 17:19 Uhr von ref editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
011
28.04.2006, 19:15 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


hi, du musst bild und text trennen,

wenn du es so machst:


test.php:

<?php

if(!isset($_GET['image']))
{
  ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<!-- Creation Date: <?=Date("d/m/Y")?> -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Dev-PHP 1.9.4">
<title>Document Title</title>
</head>
<body>
<img src="test.php?image=true">
</body>
</html>
  <?php
}
else
{
$image=imagecreate(300,150);
$farbe_body=imagecolorallocate($image,222,222,222);

Header("Content-type: image/png");
imagepng($image);
}
?>



klappt das, da er das bild auch als bild einbindet, in einem extra http-request.
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
012
28.04.2006, 20:47 Uhr
ref



alles klar..danke.
--
Man kann ein Problem nicht mit der gleichen Denkweise lösen, mit der es erschaffen wurde. (Albert Einstein)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: [ 1 ] > 2 <     [ PHP ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: