RE: Bis kein Pony kommt - Merrx - 26.09.2012, 15:41
44
Hi nightmoon
RE: Bis kein Pony kommt - Yukio - 26.09.2012, 15:41
45
Hi Nightmoon
WoT will mich verarschen ich soll schon wieder 1,5GB laden WTF?
RE: Bis kein Pony kommt - flutter - 26.09.2012, 15:43
46
RE: Bis kein Pony kommt - Merrx - 26.09.2012, 15:44
47
omega, hattest du die eine Funktion genutzt oder dein Weiterleitungsskript?
RE: Bis kein Pony kommt - Cion - 26.09.2012, 15:46
48 Huhu Nightmoon
RE: Bis kein Pony kommt - flutter - 26.09.2012, 15:48
48
RE: Bis kein Pony kommt - Yukio - 26.09.2012, 15:49
50
benutze diese die du mir gestern per PN geschickt hattest
Code:
<?php
function LoadPNG($imgname)
{
/* Attempt to open */
$im = @imagecreatefrompng($imgname);
/* See if it failed */
if(!$im)
{
/* Create a blank image */
$im = imagecreatetruecolor(150, 30);
$bgc = imagecolorallocate($im, 255, 255, 255);
$tc = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 150, 30, $bgc);
/* Output an error message */
imagestring($im, 1, 5, 5, 'Error loading ' . $imgname, $tc);
}
return $im;
}
Header('Content-type: image/png');
$img = LoadPNG('01.png');
RE: Bis kein Pony kommt - Cion - 26.09.2012, 15:50
51
RE: Bis kein Pony kommt - Land - 26.09.2012, 15:51
52
RE: Bis kein Pony kommt - Bronyfan1699 - 26.09.2012, 15:52
Mir ist langweilig muss auf hw warten aber keiner schreibt mir oder den anderen oder ist on...
RE: Bis kein Pony kommt - terracrog - 26.09.2012, 15:52
53
RE: Bis kein Pony kommt - flutter - 26.09.2012, 15:53
54
RE: Bis kein Pony kommt - Bronyfan1699 - 26.09.2012, 15:53
55
RE: Bis kein Pony kommt - Cion - 26.09.2012, 15:57
56
RE: Bis kein Pony kommt - tofl - 26.09.2012, 16:02
57
RE: Bis kein Pony kommt - Merrx - 26.09.2012, 16:02
58
omega, was hast du für Datei-Endungen?
nur png oder auch jpg oder anderes?
RE: Bis kein Pony kommt - Cion - 26.09.2012, 16:06
59
RE: Bis kein Pony kommt - tofl - 26.09.2012, 16:07
60
RE: Bis kein Pony kommt - Yukio - 26.09.2012, 16:08
61
png & jpg
RE: Bis kein Pony kommt - tofl - 26.09.2012, 16:17
62
|