Visualizzazione dei risultati da 1 a 3 su 3
  1. #1
    Utente di HTML.it
    Registrato dal
    Feb 2005
    Messaggi
    2,244

    immagine dinamica in php

    <?php
    $image_height = 100;
    $image_width = 300;

    $image = imagecreate($image_width, $image_height);

    $back_color = imagecolorallocate($image, 200, 200, 200);

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

    imagedestroy($image);

    ?>


    mi dà errore....perchè?
    dove ho errato?

    Grazie
    Stefano

  2. #2

  3. #3
    Forse ti mancano le estensioni "PHP_GD2"

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.