5 writes to RasterizationDPI
ReachFramework (5)
AlphaFlattener\BrushProxy.cs (1)
127RasterizationDPI = (int)val;
AlphaFlattener\Flattener.cs (4)
1210Configuration.RasterizationDPI = 96; 1217Configuration.RasterizationDPI = 150; 1224Configuration.RasterizationDPI = 300; 1232Configuration.RasterizationDPI = (int)(Math.Max(dcDpi, 300));
11 references to RasterizationDPI
ReachFramework (11)
AlphaFlattener\BrushProxy.cs (3)
147return 1024 + width / 96 * RasterizationDPI * 148height / 96 * RasterizationDPI * 154return 1024 + size / 96 * RasterizationDPI * 3;
AlphaFlattener\DrawingContext.cs (2)
606int width = (int) Math.Round(bounds.Width * Configuration.RasterizationDPI / 96); 607int height = (int) Math.Round(bounds.Height * Configuration.RasterizationDPI / 96);
AlphaFlattener\MetroDevice.cs (2)
652m_GDIExporter.StartPage(GetDevmode(ticket, printTicketXMLStr), Configuration.RasterizationDPI); 656m_GDIExporter.StartPage(null, Configuration.RasterizationDPI);
AlphaFlattener\Optimizer.cs (2)
51int width = (int)Math.Round(m_bounds.Width * Configuration.RasterizationDPI / 96); 52int height = (int)Math.Round(m_bounds.Height * Configuration.RasterizationDPI / 96);
AlphaFlattener\Utility.cs (2)
1884bitmapDpiX = approxWorldBounds.Width / visualBounds.Width * Configuration.RasterizationDPI; 1885bitmapDpiY = approxWorldBounds.Height / visualBounds.Height * Configuration.RasterizationDPI;