suche tutorial für PNG - grafiken

Eigendlich geht das alles, wo haste den das zeug liegen, da haut wohl mit dem webserver was nicht hin, oder was am quellcode ist falsch bei mit geht das alles :)
 
Hier erst mal der anfang wie es ausschaut :)
http://stoik.jaha.dk/projects/button/

ganz einfach.
die button.php also das bild wird einfach nur mit einen text versehen
also Bsp.: button.php?name=Tutorial

Ausgabe:
button.png


-- Und hier der Code:
PHP:
<? 
/*
Button Creator v0.1 by Stoik
File Formats JPEG; GIF; PNG;

mail: stoik@gmx.de
http://www.stoik-design.de
*/

Header ("Content-type: image/PNG"); 

//TTF-Font
$pfad = "/home/virtual_users/jaha.dk/stoik/projects/button/sevenet.ttf"; 

//Font Settings 
$groesse = "6"; 
$drehung = "0"; 
$abstand_links = "16"; 
$abstand_oben  = "8"; 

// Colors in RGB 
$R = "0"; 
$G = "0"; 
$B = "0"; 

// Picture
$img_src = "backgrnd.jpg"; 

$im = imagecreatefromJPEG("$img_src"); 
$font_color = ImageColorAllocate ($im, $R, $G, $B); 

// Who ist the Font !!! Warning !!! ./home/user/foler/font.ttf 
ImageTTFText ($im, $groesse, $drehung, $abstand_links, $abstand_oben, $font_color, $pfad, $name); 

ImagePNG ($im); 
ImageDestroy ($im); 
?>
 
Zuletzt bearbeitet:
coole sache die du da gemacht hast!

aber bei mir wider ma das gleiche!

hab das bis jetzt local probiert (localhost), und gerade vorher aufm server hat aber eben immernoch nicht geklappt :(

das is zum haaroelpissen! :mad:
 
-

Hast du die GD Libary installiert?
Und wenn dir jetzt die Frage auf der Zunge liegen sollte, was das ist, dann benutz die Suchfunktion vom Board und schäm dich.
 
hab ich ma davon gehört. weiss aber auch nich mehr drüber!

vieleich blöde frage aber braucht es das?

wenn ja wo downloaden
(hab schon gesucht aber nicht schlaues gefunden!).
 
ja das brauchst du schon les dir mal die install im php verzeichnes durch da steht was von extensions !!!

das sind die die musste in der php.ini einstellen
 
sorry weiss nich was du meinst!

ich brauch doch irgend ein programm!
hab mal das von http://www.boutell.com/gd/ downgeloadet (gd-1.8.4.zip)

wenn es das ist was ich brauch, wie muss ich es install?

oder lieg ich da ganz falsch %)
 
Aus der PHP install.txt:

Installation of Windows extensions
==================================

After installing PHP and a webserver on Windows, you will
probably want to install some extensions for added functionality.
The following table describes some of the extensions available. As
described in the manual installation steps, you can choose which
extensions you would like to load when PHP starts by uncommenting the:
extension=php_*.dll' lines in php.ini.


ATTENTION! ATTENTION! ATTENTION!
Some extra DLLs are required for some PHP extensions. Please copy the
bundled dlls from the 'dlls/' directory in distribution package to your
windows/system (Win9.x) or winnt/system32 (WinNT, Win2000) directory.
If you already have these DLLs installed on your system,
overwrite them only if something is not working correctly.
Before overwriting them, it is a good idea to backup them or move them to
another folder - just in case something goes wrong.

Also note that some extensions need 3rd party libraries,
e.g. php_oci8.dll needs the Oracle 8 client libraries to be installed
on your system. These are not bundled with PHP distribution.
ATTENTION! ATTENTION! ATTENTION!


The DLLs for PHP extensions are prefixed with 'php_'. This
prevents confusion between PHP extensions and their supporting
libraries.

Note:
In PHP 4.0.5 MySQL, ODBC, FTP, Calendar, BCMath, COM, PCRE,
Session, WDDX and XML support is built-in. You don't need to
load any additional extensions in order to use these functions.

Examples of PHP Extensions

php_dbase.dll dBase functions
php_filepro.dll Read-only access to Filepro databases
php_gd.dll GD library functions for GIF manipulation
php_hyperwave.dll HyperWave functions
php_imap.dll IMAP functions
php_ldap.dll LDAP functions
php_mssql.dll MSSQL client (requires MSSQL DB-Libraries)
php_snmp.dll SNMP get and walk functions (NT only!)
php_zlib.dll ZLib compression functions

For more information see the section about Windows extensions at
http://www.php.net/manual/en/install-windows.php#install.windows.extensions

So das andere brauchst du nicht da kannste nur dein GDLIB patchen !
 
hmmm :rolleyes:

ich und englisch!

gibts da uch was auf deutsch?

oder haste was vorgefertigt(datei)? :)
 
Zurück