[PHP] Signaturen Creator Bild speichern ?

  • Guten Tag,


    Ich habe folgendes Problem...
    Und zwar möchte ich wissen wie ich via php ein image speichere so das ich es immer wieder aufrufen kann ?


    Lg,
    Stoney_Mahoney

  • Ich würde es mit MYSQL machen ;)


    SQL
    CREATE TABLE images(
    id INT( 11 ) AUTO_INCREMENT ,
    imgdata LONGBLOB,
    imgtype VARCHAR( 20 ) ,
    PRIMARY KEY ( id )
    );



    PHP
    <img src='img_get.php?id=123'>


    PHP
    Content-Type: image/jpeg



    WENN EIN FEHLER AUFKOMMEN SOLLTE:

    PHP
    <?php
    $err=mysql_error();
    $im = ImageCreate (250,50);
    $color = ImageColorAllocate ($im, 0, 0, 0);
    $bgcolor = ImageColorAllocate ($im, 255, 255, 255);
    ImageString ($im, 2, 5, 5, $err, $color);
    header("Content-type:image/png");
    ImagePNG($im);
    ?>


    Quelle: Klick


    MFG
    PS: Google hilft weiter ;)

  • Kann Geclosed werden hab den Fehler gefunden ;).


    Lg,
    Stoney_Mahoney

    Einmal editiert, zuletzt von Stoney_Mahoney ()