Jump to content
Fórum Script Brasil
  • 0

anti-aliasing, biblioteca jpgraph e classe fpdf


Hammett

Question

olá,

Meu objetivo é gerar um gráfico de linha dentro de um PDF utilizando o recurso "anti-aliasing" para melhorar a qualidade da linha. Na documentação da biblioteca JPGRAPH é passada a seguinte instrução para ativar o recurso:

$Grafico->img->SetAntiAliasing();
O problema é que com ou sem a linha acima, o gráfico não sofre nenhuma modificação. Agradeço a atenção! Abraços
// GRAFICO 1
$posX = $this->FPDF->GetX();
$posY = $this->FPDF->GetY()+10;
        
//$Grafico = new FPDFJPGraph(138,57,$posX,$posY,$this->FPDF);
$Grafico = new FPDFJPGraph(138,80,$posX,$posY,$this->FPDF);
$Grafico->img->SetAntiAliasing();
        
$Grafico->title->setFont(FF_ARIAL,FS_BOLD,9);
$Grafico->SetScale("textlin");
$Grafico->SetMargin(100,30,30,30);
$Grafico->xgrid->SetLineStyle('dashed');
$Grafico->xgrid->SetWeight(3);
$Grafico->xgrid->SetFill(true,'#EFEFEF@0.5','#BBCCFF@0.5');
$Grafico->xgrid->show();
// Turn the tick marks out from the plot area
$Grafico->xaxis->SetTickSide(SIDE_BOTTOM);
$Grafico->yaxis->SetTickSide(SIDE_LEFT);
        
$Grafico->Add($line[0]);
$Grafico->yaxis->SetLabelFormatCallback("_cb_formataReais");
$Grafico->title->Set($titulos[0]);
$Grafico->xaxis->SetTickLabels($xLegenda);
$Grafico->Stroke();

obs.: estou utilizando a classe FPDF para gerar o PDF

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...