Number: 769
Title: Bitmap output doesn't scale with -s
Submitter: Aaron Digulla
Date: Fri Aug 19 05:58:32 2005
Subsys: Dot
Version: 2.4
System: *-*-
Severity: major
Problem:
From the documentation, the -s switch should scale the output.

I tried the input below with the following command lines on Windows XP:


dot.exe -Tpng -otest-png -s15 test.dot
dot.exe -Tpng -otest-png -s30 test.dot
dot.exe -Tpng -otest-png -s72 test.dot
dot.exe -Tpng -otest-png -s96 test.dot
dot.exe -Tpng -otest-png -s300 test.dot

That had no effect at all on the final result.

When I added "graph [ dpi = 15 ]" to the input, I got some effect.

The same happened with -Gdpi=15.
Input:

digraph "g" {
	//graph [ dpi = 15 ];
	A [ style = bold ];
	A -> B;
}
Owner: erg
Status: Fixed (22 Aug 2005)