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