web-dev-qa-db-ja.com

iText – HTMLからPDF-画像はPDF

テキスト、画像を含むhtmlページがあり、HTMLコンテンツをiTextに解析してPDFを生成しています。生成されたPDFでは、含まれる画像が表示されず、テキストのみが表示されます。

D:/Deiva/CRs/HTMLPage/article-101-horz.jpgのような絶対パスを渡すと、画像が印刷されます。しかし、私がサーバーから画像を印刷しようとすると

http://localhost:8085/content/dam/article-101-h1.jpg or http://www.google.co.in/intl/en_ALL/images/logos/images_logo_lg.gif

その後、PDFに印刷されません。

注:私はitextpdf-5.2.1.jarを使用してPDFを生成しています。

マイHTMLコード(Article.html):

<html>
   <head>
   </head>
   <body>   
     <p>Generate PDF with image using iText.</p>
     <img src="http://localhost:8085/content/dam/article-10-h1.jpg"></img>
     <img src="http://www.google.co.in/intl/en_ALL/images/logos/imgs_logo_lg.gif"></img>
     <img class="right horz" src="D:/Deiva/CRs/HTMLPage/article-101-horz.jpg"></img>
   </body>
</html>

以下を使用していますJava PDFを生成するためのコード:

private void createPDF (){

  String path = "D:/Deiva/Test.pdf";
  PdfWriter pdfWriter = null;

  //create a new document
  Document document = new Document();

  try {

   //get Instance of the PDFWriter
   pdfWriter = PdfWriter.getInstance(document, new FileOutputStream(path));

   //document header attributes
   document.addAuthor("betterThanZero");
   document.addCreationDate();
   document.addProducer();
   document.addCreator("MySampleCode.com");
   document.addTitle("Demo for iText XMLWorker");
   document.setPageSize(PageSize.LETTER);

   //open document
   document.open();
   InputStream is = new             FileInputStream("D:/Deiva/CRs/Oncology/Phase5/CR1/HTMLPage/Article.html");

   // create new input stream reader
   InputStreamReader isr = new InputStreamReader(is);

   //get the XMLWorkerHelper Instance
   XMLWorkerHelper worker = XMLWorkerHelper.getInstance();
   //convert to PDF
   worker.parseXHtml(pdfWriter, document, isr);

   //close the document
   document.close();
   //close the writer
   pdfWriter.close();

  } catch (Exception e) {
      e.printStackTrace();
  }

 }

PDFで画像を表示する解決策を提案してください。

前もって感謝します。

デイヴァ

19
Deiva

次に例をいくつか示します。 https://developers.itextpdf.com/examples/xml-worker-itext5/html-images

htmlContext.setImageProvider(new AbstractImageProvider() {
    public String getImageRootPath() { return "src/main/resources/html/"; }
}); 

解析しているHTMLファイルが作業ディレクトリとは異なるディレクトリに保存されている場合、iTextはImageオブジェクトを作成できません。 imgタグが検出された場合の処理​​をiTextに指示するIm​​ageProviderインターフェイスの実装を提供する必要があります。このインターフェースには以下のメソッドがあります。

Image retrieve(final String src);
String getImageRootPath();
void store(String src, Image img);
void reset();

これらの4つのメソッドを実装する独自のクラスを作成するか、AbstractImageProviderをサブクラス化できます。後者を行うことが好ましい。 XMLワーカーは、AbstractImageProviderクラスのstore()メソッドを使用して、マップで検出されたすべてのImageオブジェクトをキャッシュします。これらのオブジェクトは、同じsrcを持つ画像に対してretrieve()メソッドが呼び出されたときに再利用されます。画像をキャッシュしない場合、PDFが肥大化します。同じ画像ビットとバイトがPDFに複数回書き込まれます。リセット()メソッドはキャッシュをクリアし、ImageProviderが複製されるときに使用されます。最後に、getImageRootPath()メソッドは実装されていません。

解析しているHTMLファイルが作業ディレクトリとは異なるディレクトリに保存されている場合、iTextはImageオブジェクトを作成できません。 imgタグが検出された場合の処理​​をiTextに指示するIm​​ageProviderインターフェイスの実装を提供する必要があります。このインターフェースには以下のメソッドがあります。

これらの4つのメソッドを実装する独自のクラスを作成するか、AbstractImageProviderをサブクラス化できます。後者を行うことが好ましい。 XMLワーカーは、AbstractImageProviderクラスのstore()メソッドを使用して、マップで検出されたすべてのImageオブジェクトをキャッシュします。これらのオブジェクトは、同じsrcを持つ画像に対してretrieve()メソッドが呼び出されたときに再利用されます。画像をキャッシュしない場合、PDFが肥大化します。同じ画像ビットとバイトがPDFに複数回書き込まれます。リセット()メソッドはキャッシュをクリアします。ImageProviderが複製されるときに使用されます。最後に、getImageRootPath()メソッドは実装されていません。次のスニペットのように、自分で実装する必要があります。

4
sanjiv ranjan

画像を表示するためのサーブレットを使用すると簡単にできると思います。このためのサーブレットの記述方法は here です。

ここにあなたのためのサンプルディスパッチャーがあります。必要に応じて必要な場所を編集するだけ

@Controller
public class ImageController extends DispatcherServlet {



    private static final int DEFAULT_BUFFER_SIZE = 10240; // 10KB.

    // Properties ---------------------------------------------------------------------------------

    private String imagePath;

   @RequestMapping(value="images/{imageId:.+}", method = RequestMethod.GET)
   public @ResponseBody void getImage(@PathVariable String imageId,HttpServletRequest request, HttpServletResponse response){
        String requestedImage = request.getPathInfo();
         this.imagePath ="image path in server here";

         if (requestedImage == null) {
             // Do your thing if the image is not supplied to the request URI.
             // Throw an exception, or send 404, or show default/warning image, or just ignore it.
             try {
                response.sendError(HttpServletResponse.SC_NOT_FOUND);
             }catch(IOException ioException){
                logger.error("error image path incorrect:{}", ioException);

            } // 404.
             return;
         }

         File image=null;
        try {
            image = new File(imagePath, URLDecoder.decode(imageId, "UTF-8"));
        } catch (UnsupportedEncodingException unsupportedEncodingException) {
            logger.error("error image can not decode:{}", unsupportedEncodingException);

        }

         // Check if file actually exists in filesystem.
         if (!image.exists()) {
             // Do your thing if the file appears to be non-existing.
             // Throw an exception, or send 404, or show default/warning image, or just ignore it.
             try {
                response.sendError(HttpServletResponse.SC_NOT_FOUND);
             }catch(IOException ioException){
                logger.error("error image does not exists:{}", ioException);

            } // 404.
             return;
         }

         // Get content type by filename.
         String contentType = "jpeg";
         contentType="image/"+contentType;

         // Init servlet response.
         response.reset();
         response.setBufferSize(DEFAULT_BUFFER_SIZE);
         response.setContentType(contentType);
         response.setHeader("Content-Length", String.valueOf(image.length()));
         response.setHeader("Content-Disposition", "inline; filename=\"" + image.getName() + "\"");

         // Prepare streams.
         BufferedInputStream input = null;
         BufferedOutputStream output = null;

         try {
             // Open streams.
             try {
                input = new BufferedInputStream(new FileInputStream(image), DEFAULT_BUFFER_SIZE);
            } catch (FileNotFoundException e) {

                logger.error("error creating file input stream to the image file :{}", e);


            }
             try {

                 output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);

            } catch (IOException e) {


                logger.error("error creating output stream to the http response :{}", e);

            }

             // Write file contents to response.
             byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
             int length;
             try {
                while ((length = input.read(buffer)) > 0) {
                     output.write(buffer, 0, length);
                 }
            } catch (IOException e) {

                logger.error("error writing the image file to outputstream :{}", e);

            }
         } finally {
             // Gently close streams.
             close(output);
             close(input);
         }
     }

     // Helpers (can be refactored to public utility class) ----------------------------------------




private  void close(Closeable resource) {
    if (resource != null) {
        try {
            resource.close();
        } catch (IOException e) {
            // Do your thing with the exception. Print it, log it or mail it.
            logger.error("error closing resources:{}", e);
        }
    }
}




}
4

itextを使用して画像を表示するには、画像プロバイダーに関するデフォルトの設定を変更する必要があります:Like this:i do it from http://demo.itextsupport.com/xmlworker/itextdoc/flatsite.html

public class HtmlToPDF1 {
  public static void main(String ... args ) throws DocumentException, IOException {    

      FontFactory.registerDirectories();
      Document document = new Document();
      PdfWriter writer = PdfWriter.getInstance(document,
          new FileOutputStream("src/test/ressources/mypdf.pdf"));
      document.open(); HtmlPipelineContext htmlContext = new HtmlPipelineContext(null);
      htmlContext.setTagFactory(Tags.getHtmlTagProcessorFactory());
      htmlContext.setImageProvider(new AbstractImageProvider() {
          public String getImageRootPath() {
              return "/home/fallphenix/workspace/Java/JEE/testHTMLtoPDF/src/test/ressources/";
          }
      }); CSSResolver cssResolver =
            XMLWorkerHelper.getInstance().getDefaultCssResolver(true);
        Pipeline<?> pipeline =
            new CssResolverPipeline(cssResolver,
                    new HtmlPipeline(htmlContext,
                        new PdfWriterPipeline(document, writer)));
        XMLWorker worker = new XMLWorker(pipeline, true);
        XMLParser p = new XMLParser(worker);
        p.parse(new FileInputStream("src/test/ressources/other.html"));
        document.close();
          System.out.println("Done.");        
    }}
3

私も同じ問題に直面しました。

しかし、それは画像の絶対パスで動作していました。リモートパスでは機能しないようです。ここでidが行ったことは、ファイルシステムの一時的な場所に画像を保存してpdfを生成し、最終的に一時的な場所から画像ファイルを削除することです。

<img src="/home/jboss/temp/imgs/img.png"/>
1
Dinesh-SriLanka

画像をメモリまたはバイトストリームオブジェクトに取り込み、その画像オブジェクトをitextsharp画像にキャストしてみてください。

iTextSharp.text.Imageのオーバーロードを探る

編集:

コードはC#で記述されていますが、役立つ場合があります。

次のようにローカルドライブからイメージを取得します。

Bitmap image1;
image1 = new Bitmap(@"C:\Documents and Settings\All Users\" 
            + @"Documents\My Music\music.jpeg", true);

注::アプリケーションフォルダーに画像がある場合、C#でそれらのローカルファイルパスを取得する関数があります。 Javaについて知らない。外部サイトからの画像は次のようにダウンロードできます

System.Net.WebClient client = new WebClient();
client.DownloadFile(imageURL, localPathname);   // look into Java to get local path

このバイトストリームを画像オブジェクトに変換します

MemoryStream imgMemoryStream = new MemoryStream(imgByteArray);
Image myImage = Drawing.Image.FromStream(imgMemoryStream);

それからiTextSharp画像オブジェクトを作成し、次のようにドキュメントに追加します

iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(myImage, System.Drawing.Imaging.ImageFormat.Jpeg);
document.Add(pic);

これがお役に立てば幸いです。

1
Saksham