Giter Club home page Giter Club logo

Comments (4)

mplodowski avatar mplodowski commented on September 9, 2024

Check here: https://github.com/mplodowski/dynamicpdf-plugin?tab=readme-ov-file#page-numbers

You have access to PAGE_NUM constant, so check if it is not even and add page empty page to pdf. Check dompdf documentation how to add new page.

If you figure it out, please add your solution here.

from dynamicpdf-plugin.

jjezik82 avatar jjezik82 commented on September 9, 2024

Well I'm really lost here. It would be really nice, if PAGE_COUNT constant could be used in template where I could do something like:
`{% if PAGE_COUNT is odd %}

{% endif %}`

I could use PAGE_COUNT variable also in other cases, like put it in table on front page, but I just have no idea how to get access to that.

from dynamicpdf-plugin.

mplodowski avatar mplodowski commented on September 9, 2024

Enable demo: https://github.com/mplodowski/dynamicpdf-plugin?tab=readme-ov-file#demo-examples

There is Header and Footer example there. Go to Header and Footer layout and there is a code for using page numbers.

You can use following methods to accomplish what you need:

$pdf->new_page(); // add new page

$pdf->get_page_count(); // get all page count

from dynamicpdf-plugin.

jjezik82 avatar jjezik82 commented on September 9, 2024

Ok, got it working like this

`<script type="text/php">
if (isset($pdf)) {
$size = 9;
$color = [0,0,0];

		$font = "{{ 'plugins/renatio/dynamicpdf/assets/fonts/Montserrat-Regular.ttf'|app }}";
        $textHeight = $fontMetrics->getFontHeight($font, $size);
        $width = $fontMetrics->getTextWidth('Page 1 of 2', $font, $size);

        $foot = $pdf->open_object();

        $w = $pdf->get_width();
        $h = $pdf->get_height();

        $y = $h - $textHeight - 35;

        $pdf->close_object();
        $pdf->add_object($foot, 'all');

        $text = "Strana {PAGE_NUM} z {PAGE_COUNT}";

	    if ($PAGE_COUNT % 2 != 0) { // Check if page number is odd
	      $pdf->new_page(); // Add a new blank page
	    }
        // Center the text
        $pdf->page_text(40, $y, $text, $font, $size, $color);
        
    }
</script>`

from dynamicpdf-plugin.

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.