この問題の回避策を見つけました。reportviewer の設定では PDF の dpiX と dpiY を変更できない場合がありますが、C# を使用して PDF を手動でエクスポートまたはレンダリングすることで変更できます。はこれを行い、XML のパラメータでReport.Render()
dpiX および dpiY 値を使用します。<deviceinfo>
これを行うコードは次のとおりです。
string reportype = "PDF";
string mimeType;
string encoding;
string fileNameExtension;
string devinfo = "<DeviceInfo><ColorDepth>32</ColorDepth><DpiX>350</DpiX><DpiY>350</DpiY><OutputFormat>PDF</OutputFormat>"+
" <PageWidth>8.5in</PageWidth>" +
" <PageHeight>11in</PageHeight>" +
" <MarginTop>0.5in</MarginTop>" +
" <MarginLeft>0.5in</MarginLeft>" +
" <MarginRight>0in</MarginRight>" +
" <MarginBottom>0in</MarginBottom>" +
"</DeviceInfo>";
Warning[] warnings;
string[] streams;
byte[] renderedBytes;
renderedBytes = this.reportViewer1.LocalReport.Render(reportype, devinfo, out mimeType,
out encoding,
out fileNameExtension,
out streams,
out warnings);
using (FileStream fs = new FileStream("output3.pdf", FileMode.Create))
{
fs.Write(renderedBytes, 0, renderedBytes.Length);
}