Author: julianfoad
Date: Wed Mar  7 11:54:34 2012
New Revision: 1297945

URL: http://svn.apache.org/viewvc?rev=1297945&view=rev
Log:
* tools/dev/merge-graph.py
  Make the output images smaller than the default size by changing the
  PNG output resolution to 72dpi (default is 96).

Modified:
    subversion/trunk/tools/dev/merge-graph.py

Modified: subversion/trunk/tools/dev/merge-graph.py
URL: 
http://svn.apache.org/viewvc/subversion/trunk/tools/dev/merge-graph.py?rev=1297945&r1=1297944&r2=1297945&view=diff
==============================================================================
--- subversion/trunk/tools/dev/merge-graph.py (original)
+++ subversion/trunk/tools/dev/merge-graph.py Wed Mar  7 11:54:34 2012
@@ -37,7 +37,7 @@ if __name__ == '__main__':
 
   for config_filename in sys.argv[1:]:
     print prog_name + ": reading '" + config_filename + "',",
-    graph = MergeDot(config_filename, rankdir='LR')
+    graph = MergeDot(config_filename, rankdir='LR', dpi='72')
     print "writing '" + graph.filename + "'"
     graph.write_png(graph.filename)
 


Reply via email to