1 47 package com.lowagie.text.pdf; 48 49 import java.io.IOException ; 50 51 54 public class PdfRendition extends PdfDictionary { 55 PdfRendition(String file, PdfFileSpecification fs, String mimeType) throws IOException { 56 put(PdfName.S, new PdfName("MR")); 57 put(PdfName.N, new PdfString("Rendition for "+file)); 58 put(PdfName.C, new PdfMediaClipData(file, fs, mimeType)); 59 } 60 61 } 62 | Popular Tags |