Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Medium
-
Resolution: Fixed
-
Affects Version/s: < v5-28-00
-
Fix Version/s: None
-
Component/s: Graphics
-
Labels:None
-
Environment:
All
-
External issue ID:bugs97592
-
External issue URL:
-
Development:
Description
When run in batch mode, the following macro shows the problem:
{
|
TCanvas *C = new TCanvas("C", "C",0,0,600,600);
|
C->SetFillColor(30);
|
|
TPad *P = new TPad("P", "P",0.2,0.2,0.8,0.8);
|
P->SetFillColor(5);
|
P->Draw();
|
P->cd();
|
|
TText t(.5,.5,"This text is not clipped in PNG output");
|
t.Draw();
|
|
C->Print("C.png");
|
}
|