浏览代码

Fixed encoding issue.

Using Commons IO ByteArrayOutputStream.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@391907 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_92-beta
Jeremias Maerki 18 年前
父节点
当前提交
624e2ee285
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3
    2
      src/java/org/apache/fop/pdf/PDFOutputIntent.java

+ 3
- 2
src/java/org/apache/fop/pdf/PDFOutputIntent.java 查看文件

@@ -18,9 +18,10 @@

package org.apache.fop.pdf;

import java.io.ByteArrayOutputStream;
import java.io.IOException;

import org.apache.commons.io.output.ByteArrayOutputStream;

/**
* Represents the OutputIntent dictionary.
* @since PDF 1.4
@@ -118,7 +119,7 @@ public class PDFOutputIntent extends PDFObject {
/**
* Sets the destination ICC profile.
* @param destOutputProfile An ICC profile stream defining the transformation from the PDF
* documents source colors to output device colorants.
* document's source colors to output device colorants.
*/
public void setDestOutputProfile(PDFICCStream destOutputProfile) {
this.destOutputProfile = destOutputProfile;

正在加载...
取消
保存