1

当我显示一些文本时,它只显示在 1 行中,这就是为什么整个文本在 pdf 中不可见的原因。如果 txt 更多,它应该自动进入下一行。请看下面的代码

<?xml version="1.0" encoding="utf-8"?>
 <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
layout="horizontal" >
    <mx:Script>
        <![CDATA[
           import org.alivepdf.pdf.PDF;
            import org.alivepdf.saving.Method;
            import org.alivepdf.fonts.*;
            import org.alivepdf.pages.Page;
             import org.alivepdf.display.Display;
             import org.alivepdf.layout.*;

    [Bindable] private var message:String;
   private var pdf:PDF;
            private var file:File;
            private function submitData():void {
            message+='The Text Value is ' + t1.text + ' The second
text value is' + t2.text +
                        'it is testing message it is testing message it is
testing message '+
                        'The Text Value is ' + t1.text + ' The second text value
is' + t2.text+
                        'it is testing message it is testing message it is
testing message ';
            }

             public function generate ():void
             {
                submitData();

             var pdf:PDF = new PDF( Orientation.PORTRAIT, Unit.MM,
Size.A4 );
                 pdf.setDisplayMode( Display.FULL_PAGE,
Layout.SINGLE_PAGE );
                var newPage:Page = new Page (Orientation.PORTRAIT,
Unit.MM, Size.A4 );
                pdf.addPage( newPage );
                //pdf.setFont(IFont,12);
                pdf.addText(message,5,15);
                pdf.addPage();
                var fs:FileStream = new FileStream();
                file =
File.desktopDirectory.resolvePath("testPage.pdf");
                fs.open( file, FileMode.WRITE);
                var bytes:ByteArray = pdf.save(Method.LOCAL);
                                 fs.writeBytes(bytes);
                fs.close();
             }
        ]]>
    </mx:Script>

    <mx:TextInput id="t1"  text="txt111" />
    <mx:TextInput id="t2"  text="txt222"/>
   <mx:Button click="generate()" label="Generate PDF"
horizontalCenter="0" verticalCenter="0"/>

    </mx:WindowedApplication>

有什么解决方案可以在 pdf 中显示文本,我们可以给我们的文本指定字体大小吗?谢谢

4

1 回答 1

2

addText不包裹。改用writeText方法。

文档

addText()方法将在给定坐标处输出文本。没有进行自动换行

链接页面包含两种方法的代码示例。

于 2010-02-15T06:37:38.653 回答