Jump to content
Fórum Script Brasil
  • 0

Desenhar um degrade com a GD


vini_loock

Question

Olá,

Estou tentado fazer um degrade com a GD, mas não consigo, não sei o porque.

Acredito q tenha alguma coisa errada com meu PHP, pois se eu desenhar uma image e mandar imprimir na tela, não acontece nada, só funciona se eu salvar e no caso do degrade, quando eu salvo a image ele salva tudo ok, mas com uma cor sólida.

O código:

<?php
    
    $width = $_GET['w'];
    $height = $_GET['h'];
    
    $start['r'] = 0;
    $start['g'] = 101;
    $start['b'] = 150;
    
    $end['r'] = 0;
    $end['g'] = 42;
    $end['b'] = 62;
    
    $each['r'] = ($start['r']-$end['r'])/$height;
    $each['g'] = ($start['g']-$end['g'])/$height;
    $each['b'] = ($start['b']-$end['b'])/$height;
    
    $ct = imagecreate($width, $height);
    
    for($i = 0; $i < $width; $i++){
        
        for($j = 0; $j < $height; $j++){
            
            $r = $start['r']+($each['r']*$j);
            $g = $start['g']+($each['g']*$j);
            $b = $start['b']+($each['b']*$j);
            
            imagesetpixel($ct, $i, $j, imagecolorallocate($ct, $r, $g, $b));
            
        }
        
    }
    
    imagepng($ct, 'image.png');
    imagedestroy($ct);
    
?>

Meu PHP é o 5.3.5

e a GD: 2.4.3

Ta muito estranho isso, esse código eu tinha usado há um tempo atras(antes d atualizar o PHP) e tudo deu certo. Será que é por causa da versão do PHP?

Vlw.

Vinicius

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...