JEuclid - 设置从MathML转换的图像的大小

时间:2013-03-13 11:40:04

标签: java image mathml

我正在寻找一种在MathML到图像转换后设置输出图像尺寸的方法。我写了一个简单的代码:

public static void main(String[] args) throws IOException {
    Converter converter = Converter.getInstance();
    converter.convert(new File("C:\\test.html"),
        new File("C:\\out.jpg"), "image/jpeg");
}

test.html看起来像:

<?xml version="1.0"?>
<!DOCTYPE math PUBLIC "-//W3C//DTD MathML 2.0//EN" "http://www.w3.org/TR/MathML2/dtd/mathml2.dtd">
<math mode="display">
  <mrow>
    <munderover>
      <mo>&#x222B;</mo>
      <mn>1</mn>
      <mi>x</mi>
    </munderover>
    <mfrac>
      <mi>dt</mi>
      <mi>t</mi>
    </mfrac>
  </mrow>
 </math>

结果我得到了一张21x37px的图像。到目前为止,我已尝试过(但它不起作用):

MutableLayoutContext params = new LayoutContextImpl(
            LayoutContextImpl.getDefaultLayoutContext());
    params.setParameter(Parameter.?, ?);

你知道我可以操纵这个角色吗?

1 个答案:

答案 0 :(得分:0)

我找到了一种方法,这里有帮助的参数是:

params.setParameter(Parameter.MATHSIZE, 50f);