Package com.adobe.dp.epub.ops

Examples of com.adobe.dp.epub.ops.OPSDocument.createElement()


      // chapter XHTML body element
      Element body = mainDoc.getBody();

      // add a header
      Element h1 = mainDoc.createElement("h1");
      h1.add("My First EPUB");
      body.add(h1);

      // add a paragraph
      Element paragraph = mainDoc.createElement("p");
View Full Code Here


      Element h1 = mainDoc.createElement("h1");
      h1.add("My First EPUB");
      body.add(h1);

      // add a paragraph
      Element paragraph = mainDoc.createElement("p");
      paragraph.add("Hello, world!");
      body.add(paragraph);

      // save EPUB to an OCF container
      OCFContainerWriter writer = new OCFContainerWriter(
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.