1

Jpedalツールを使用してPDFを画像に変換しています。PDFページの数が非常に多く、それを処理して変換すると、Tomcatが停止し、例外がスローされます-

  javax.imageio.IIOException: I/O error writing PNG file.

誰でもこれを手伝ってもらえますか。

public boolean createPDF2ImageTask(String sourcePDFAbsPath, String destinationImageAbsPath, Float scalingFactor, String fileFormat, int softLimitInKB) throws Exception
    { 

        System.setProperty("org.jpedal.flattenForm","true");
        logger.info("createPDF2ImageTask ( sourcePDFAbsPath = "+sourcePDFAbsPath+" , destinationImageAbsPath = "+destinationImageAbsPath+ ", scalingFactor = "+scalingFactor+ " , fileFormat = "+fileFormat+ " softLimitInKB ="+softLimitInKB );
        boolean status = true;
        Float newScalingFactor;
        int sizeOfImageInKB;

        //PdfDecoder object provides the conversion 

        PdfDecoderServer decoder = null;
        Map mapValues = null;
        BufferedImage imageToSave = null;
        BufferedOutputStream bufferedOutputStream = null;
        long startTime = System.currentTimeMillis();
        try
        {

            Helper.deleteFile(destinationImageAbsPath);

            //mappings for non-embedded fonts to use
            FontMappings.setFontReplacements();

            decoder = new PdfDecoderServer(true);
            decoder.openPdfFile(sourcePDFAbsPath);


            mapValues = new HashMap();


            mapValues.put(JPedalSettings.EXTRACT_AT_BEST_QUALITY_MAXSCALING, 2);

            //alternatively secify a page size (aspect ratio preserved so will do best fit)
            //set a page size (JPedal will put best fit to this)
            PdfPageData pageData = decoder.getPdfPageData();
            int width = (int)(scalingFactor*pageData.getCropBoxWidth(1));
            int height = (int)(scalingFactor*pageData.getCropBoxHeight(1));
            logger.info("width = "+ width + "   height= "+height);          
            mapValues.put(JPedalSettings.EXTRACT_AT_PAGE_SIZE, new String[]{String.valueOf(width),String.valueOf(height)});

            //which takes priority (default is false)
            mapValues.put(JPedalSettings.PAGE_SIZE_OVERRIDES_IMAGE, Boolean.TRUE);

            PdfDecoderServer.modifyJPedalParameters(mapValues);                              

            /////////////////////////////////////////////////////////////////////////////////////

            try
            {
                imageToSave = decoder.getPageAsHiRes(1, null, false);
                decoder.flushObjectValues(true);
                if(imageToSave != null)
                {
                    logger.info("Start saving image as a file");
                    bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(new File(destinationImageAbsPath)));

                    ImageIO.write(imageToSave, fileFormat, bufferedOutputStream);

                }
                else
                {
                    throw new Exception("imageToSave is null, Exception in extractPageAsImage ");
                }
            }
            catch(Exception e)
            {
                logger.error("Exception in extractPageAsImage :: "+e);
                logger.error("Exception stack trace in extractPageAsImage :: ",e);
                throw new Exception("Exception in extractPageAsImage :: "+e);
            }

例外をスローしています - extractPageAsImage で例外 :: javax.imageio.IIOException: PNG ファイルの書き込み中に I/O エラーが発生しました!

4

1 に答える 1