Skip to content

Instantly share code, notes, and snippets.

@terwey
Created December 3, 2024 12:20
Show Gist options
  • Save terwey/18ca6d527e46a29c084af538f2ad00e7 to your computer and use it in GitHub Desktop.
Save terwey/18ca6d527e46a29c084af538f2ad00e7 to your computer and use it in GitHub Desktop.
Ticketmaster ticket splitting

You might be in a scenario where you purchased multiple tickets for a show with Ticketmaster and want to split the PDF.

This is not possible as the file is encrypted. However using Ghostscript we can reprocess the file and get a new PDF that you can split as you want.

gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=output.pdf -dPDFSETTINGS=/prepress -f your-tickets.pdf

Note: depending on your jurisdiction this might not be legal. INAL.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment