5 writes to RasterizationDPI
ReachFramework (5)
AlphaFlattener\BrushProxy.cs (1)
122RasterizationDPI = (int)val;
AlphaFlattener\Flattener.cs (4)
1207Configuration.RasterizationDPI = 96; 1214Configuration.RasterizationDPI = 150; 1221Configuration.RasterizationDPI = 300; 1229Configuration.RasterizationDPI = (int)(Math.Max(dcDpi, 300));
11 references to RasterizationDPI
ReachFramework (11)
AlphaFlattener\BrushProxy.cs (3)
142return 1024 + width / 96 * RasterizationDPI * 143height / 96 * RasterizationDPI * 149return 1024 + size / 96 * RasterizationDPI * 3;
AlphaFlattener\DrawingContext.cs (2)
603int width = (int) Math.Round(bounds.Width * Configuration.RasterizationDPI / 96); 604int height = (int) Math.Round(bounds.Height * Configuration.RasterizationDPI / 96);
AlphaFlattener\MetroDevice.cs (2)
647m_GDIExporter.StartPage(GetDevmode(ticket, printTicketXMLStr), Configuration.RasterizationDPI); 651m_GDIExporter.StartPage(null, Configuration.RasterizationDPI);
AlphaFlattener\Optimizer.cs (2)
46int width = (int)Math.Round(m_bounds.Width * Configuration.RasterizationDPI / 96); 47int height = (int)Math.Round(m_bounds.Height * Configuration.RasterizationDPI / 96);
AlphaFlattener\Utility.cs (2)
1866bitmapDpiX = approxWorldBounds.Width / visualBounds.Width * Configuration.RasterizationDPI; 1867bitmapDpiY = approxWorldBounds.Height / visualBounds.Height * Configuration.RasterizationDPI;