Browse Source

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 years ago
parent
commit
624e2ee285
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      src/java/org/apache/fop/pdf/PDFOutputIntent.java

+ 3
- 2
src/java/org/apache/fop/pdf/PDFOutputIntent.java View File



package org.apache.fop.pdf; package org.apache.fop.pdf;


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


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

/** /**
* Represents the OutputIntent dictionary. * Represents the OutputIntent dictionary.
* @since PDF 1.4 * @since PDF 1.4
/** /**
* Sets the destination ICC profile. * Sets the destination ICC profile.
* @param destOutputProfile An ICC profile stream defining the transformation from the PDF * @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) { public void setDestOutputProfile(PDFICCStream destOutputProfile) {
this.destOutputProfile = destOutputProfile; this.destOutputProfile = destOutputProfile;

Loading…
Cancel
Save