English 中文(简体)
ABCPDF Font Publishing Layout - organ Dependent
原标题:ABCPDF Font Printing Layout - Machine Dependent

我正在利用ABCPDF通过EMF文档向当地印刷商印刷一份PDF文件。 我非常密切地以ABC PDF 样本“ABCPDFView”项目为基础。 我的申请在我的视窗7和视窗XP dev箱子上做了罚款,但当我搬入Windows 2003测试箱时,便衣(如《新罗马12号时报》)被完全错误(错误点,短处和棚户,几乎与新闻部一样是轻率错误的)。

请注意,我用超编主机打印司机将电离240x240。 我可以把驾驶员作为主子,因为如果我在印刷期间在当地保存EMF文件,就会发现同样的布局问题。 如果我向全国过渡政府或政府间森林论坛提交文件,那么,这只看上去了使用同一代码的所有我的服务器的罚款(投射机,取代......)。 最后,如果我利用ABCPDF的“意见”项目,在我的国防军随机盒子中人工添加这一文字,那么该文本也使EMF文件错误。 (同上,如果我用缩略语印刷PDF,案文仅作罚款)

最新消息:我给任何有这一问题的人留下了有益的观点。 我可以通过将RenderTextAsTextText设定为“0”来解决这一问题(见下文准则)。 这迫使ABCPDF使案文成为多功能,使问题消失。 虽然这大大提高了我EMF文件的规模,而且这些多功能文件在我最后的印刷文件中几乎不清。

没有人想到这个问题的根源?

private void DoPrintPage(object sender, PrintPageEventArgs e)
  {
      using (Graphics g = e.Graphics)
      {
        //... omitted code to determine the rect, used straight from ABC PDF sample
          mDoc.Rendering.DotsPerInch = 240 ;
          mDoc.Rendering.ColorSpace = "RGB";
          mDoc.Rendering.BitsPerChannel = 8;
          mDoc.SetInfo(0, "RenderTextAsText", "0");//the magic is right here
          byte[] theData = mDoc.Rendering.GetData(".emf");
          using (MemoryStream theStream = new MemoryStream(theData))
          {
              using (Metafile theEMF = new Metafile(theStream))
              {
                  g.DrawImage(theEMF, theRect);
              }
          }
          //... omitted code to move to the next page
      }
最佳回答

我最初是在1920x1080年解决的科索沃民主党,把1024x768段转嫁给科索沃民主党,问题消失了。 我的主要方案是作为一个服务机构运作,从民主党会议开始提供这些服务。

我有一份电子邮件,地址是:w/ABC PDF,看看他们是否能够解释这一点,并提供更明智的解决办法,但现在这项工作是这样。

请注意,这是ABC PDF 7,如果这个问题适用于其他版本,我没有想法。

最新信息:ABC PDF支持证实,它可能提供的服务使启动这一进程的人放弃显示解决办法。 他们确认,他们亲眼看到了与遥测台站在一起的其他棘手问题,并鼓励我利用这1024x768个工作团和(或)远程开始服务。

问题回答

提炼升级到新的版本的Abcpdf 8,它有自己的基于Gecko的制造引擎,因此,当Abcpdf正在使用IE的专用服务器版本来提供时,你可以绕过类似这个问题。





相关问题
Java (AWT): fitting text in a box

I have an application that extends a Frame. Then, it ll display a few lines of text using: Font f = new Font("Arial", Font.PLAIN, 10); g.setFont(f); g.drawString("Test|great Yes ^.", x, y + 10); Now ...

Embed font into PDF file by using iText

I defined a tag map, and got a XML data file. I want to convert the XML data file to PDF by using iText. The question is how to embed fonts (e.g. Polish font, Chinese font) into the target PDF when ...

Font Rendering between Mozilla and webkit

I m not sure if this has anything to do with the recent Safari update, but I m beginning to notice this a lot. There is a drastic difference in the way each browser is rendering fonts. for instance, ...

Embedding Fonts in AS3 - Dynamic Text Field disappears

This is hopefully a new problem or just me missing something obvious. Please help! I m embedding a font into my AS3 application. I m doing everything by-the-book and it half-works. In my main class, ...

Dynamic GD image width text

I m trying to spice up my website by using custom fonts for headings. For me, the most appropriate way to do this is using PHP and GD. I have written a little script which will output the dynamic text ...

How do I combine @font-face and @media declarations?

I d like to build a common typography stylesheet with a very small number of selectors. As such, I d far prefer to use @media sections for the various versions rather than create different files, each ...

热门标签