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