BIRT レポート ジェネレーターの問題に直面しています。デザイナーを使用してレポートを作成し、マスターページの向きを横向きに、ページの種類を A4 に設定しましたが、サーバーのレポート エンジンを使用して機能させる方法がありません (常に縦向きで表示されます)。追加を省略pdfOptions
しても、問題は引き続き発生します。
ただし、デザイナーのプレビュー オプションを使用すると機能します。
それが私のReportRenderer
クラスです:
import javax.servlet.ServletContext;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.eclipse.birt.report.engine.api.EngineConfig;
import org.eclipse.birt.report.engine.api.EngineConstants;
import org.eclipse.birt.report.engine.api.EngineException;
import org.eclipse.birt.report.engine.api.HTMLRenderOption;
import org.eclipse.birt.report.engine.api.IPDFRenderOption;
import org.eclipse.birt.report.engine.api.IRenderOption;
import org.eclipse.birt.report.engine.api.IReportEngine;
import org.eclipse.birt.report.engine.api.IReportRunnable;
import org.eclipse.birt.report.engine.api.IRunAndRenderTask;
import org.eclipse.birt.report.engine.api.PDFRenderOption;
import org.eclipse.birt.report.engine.api.RenderOption;
import org.eclipse.birt.report.engine.api.ReportEngine;
import org.springframework.web.context.ServletContextAware;
public class ReportRenderer{
public ByteArrayOutputStream renderReport(ReportPath reportPath,
Map<String, Object> reportParams,
Locale locale) throws EngineException {
IReportEngine engine;
ByteArrayOutputStream os = new ByteArrayOutputStream();
EngineConfig config = new EngineConfig();
engine = new ReportEngine(config);
final IReportRunnable design = engine
.openReportDesign(this._ServletContext.getRealPath("/")
+ reportPath.get_Path());
// design.get
// engine.
// Create task to run and render the report,
final IRunAndRenderTask task = engine.createRunAndRenderTask(design);
//report arguments and language
task.setParameterValue("data_url", this._DataUrl);
task.setParameterValue("user_name", this._UserName);
task.setParameterValue("user_password", this._UserPassword);
for (Entry<String, Object> entry : reportParams.entrySet()) {
task.setParameterValue(entry.getKey(), entry.getValue());
}
task.setLocale(locale);
// Set parent classloader for engine
task.getAppContext().put(EngineConstants.APPCONTEXT_CLASSLOADER_KEY,
GenericReportRenderer.class.getClassLoader());
final IRenderOption options = new RenderOption();
options.setOutputFormat("pdf");
options.setOutputStream(os);
final PDFRenderOption pdfOptions = new PDFRenderOption(options);
pdfOptions.setOption(IPDFRenderOption.PAGE_OVERFLOW,
IPDFRenderOption.FIT_TO_PAGE_SIZE);
pdfOptions.setOption(IPDFRenderOption.PAGE_OVERFLOW,
IPDFRenderOption.OUTPUT_TO_MULTIPLE_PAGES);
task.setRenderOption(options);
// run and render report
task.run();
task.close();
return os;
}
}
このリンクが示すように、 javascript を使用してページの向きを変更するオプションのようですが、どこに適用すればよいかわかりません。私は birt ランタイム 4.2.0 を使用しています。
何か案が?