Git Product home page Git Product logo

Comments (6)

asturio avatar asturio commented on August 27, 2024

Can you provide example code to reproduce the problem?

from openpdf.

DanielMcBride550 avatar DanielMcBride550 commented on August 27, 2024

Here is a chunk that recreates it:

public static void main(String... args) throws Exception
	{
		Document document = new Document();
		ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
		PdfWriter writer = PdfWriter.getInstance(document, byteArrayOutputStream);

		document.open();

		PdfContentByte cb = writer.getDirectContent();
		cb.setTextRenderingMode(PdfContentByte.TEXT_RENDER_MODE_FILL);

		int loops = 24;

		Paragraph outerParagraph = new Paragraph();
		for (int i = 0; i < loops; i++)
		{
			Paragraph paragraph = new Paragraph();
			paragraph.setFont(new Font(Font.HELVETICA, 8));
			paragraph.setSpacingBefore(2.5f);
			paragraph.setKeepTogether(true);
			
			StringReader strReader = new StringReader("arbitrary text");
			ArrayList<Element> htmlObjects = HTMLWorker.parseToList(strReader, null);

			for (Element htmlObject : htmlObjects)
			{
				paragraph.add(htmlObject);
			}
			outerParagraph.add(paragraph);			
		}
		document.add(outerParagraph);
		
		document.newPage();

		Paragraph outerParagraph2 = new Paragraph();
		for (int i = 0; i < loops; i++)
		{
			Paragraph paragraph = new Paragraph();
			paragraph.setFont(new Font(Font.HELVETICA, 8));
			paragraph.setSpacingBefore(2.5f);
			paragraph.setKeepTogether(true);
			
			StringReader strReader = new StringReader("arbitrary text");
			ArrayList<Element> htmlObjects = HTMLWorker.parseToList(strReader, null);

			for (Element htmlObject : htmlObjects)
			{
				paragraph.add(htmlObject);
			}
			outerParagraph2.add(paragraph);			
		}
		document.add(outerParagraph2);

		document.close();
		writer.close();

		FileOutputStream fos = new FileOutputStream("example.pdf");
		fos.write(byteArrayOutputStream.toByteArray());

		System.out.println("Complete");

	}

from openpdf.

DanielMcBride550 avatar DanielMcBride550 commented on August 27, 2024

It seems to be related to the nested paragraphs sections, but I think this should work, yeah?

from openpdf.

asturio avatar asturio commented on August 27, 2024

Having some code in the issues are always a good starting point for me or any other contributor. Maybe this could be avoided, if before creating a new page, we check if the content of the actual page is "empty". If the paragrapha text is rendered in the previous page and the new page only contains the "new line", than maybe the newPage() should do nothing?

from openpdf.

DanielMcBride550 avatar DanielMcBride550 commented on August 27, 2024

I currently do that. I check to see if current page is empty and if it is, I skip the newpage call. I think something is causing it to not be considered empty.

from openpdf.

DanielMcBride550 avatar DanielMcBride550 commented on August 27, 2024

Is there a known workaround for this?

from openpdf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.