diff --git a/src/pretix/base/pdf.py b/src/pretix/base/pdf.py index f9cfb70f9e..5ba2da2c8c 100644 --- a/src/pretix/base/pdf.py +++ b/src/pretix/base/pdf.py @@ -929,6 +929,7 @@ class Renderer: bg_page = copy.copy(self.bg_pdf.pages[i]) bg_rotation = bg_page.get('/Rotate') if bg_rotation: + # /Rotate is clockwise, transformation.rotate is counter-clockwise t = Transformation().rotate(bg_rotation) w = float(page.mediabox.getWidth()) h = float(page.mediabox.getHeight())