5 writes to RasterizationDPI
ReachFramework (5)
AlphaFlattener\BrushProxy.cs (1)
123RasterizationDPI = (int)val;
AlphaFlattener\Flattener.cs (4)
1205Configuration.RasterizationDPI = 96; 1212Configuration.RasterizationDPI = 150; 1219Configuration.RasterizationDPI = 300; 1227Configuration.RasterizationDPI = (int)(Math.Max(dcDpi, 300));
11 references to RasterizationDPI
ReachFramework (11)
AlphaFlattener\BrushProxy.cs (3)
143return 1024 + width / 96 * RasterizationDPI * 144height / 96 * RasterizationDPI * 150return 1024 + size / 96 * RasterizationDPI * 3;
AlphaFlattener\DrawingContext.cs (2)
602int width = (int) Math.Round(bounds.Width * Configuration.RasterizationDPI / 96); 603int height = (int) Math.Round(bounds.Height * Configuration.RasterizationDPI / 96);
AlphaFlattener\MetroDevice.cs (2)
646m_GDIExporter.StartPage(GetDevmode(ticket, printTicketXMLStr), Configuration.RasterizationDPI); 650m_GDIExporter.StartPage(null, Configuration.RasterizationDPI);
AlphaFlattener\Optimizer.cs (2)
47int width = (int)Math.Round(m_bounds.Width * Configuration.RasterizationDPI / 96); 48int 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;