CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Installing CiviCRM »
  • Drupal Installations (Moderator: Piotr Szotkowski) »
  • Pdf format and A4 page size
Pages: [1]

Author Topic: Pdf format and A4 page size  (Read 2538 times)

TheoRichel

  • I post frequently
  • ***
  • Posts: 122
  • Karma: 0
  • CiviCRM version: 4.2.1
  • CMS version: Drupal 6.24
  • MySQL version: 5.9
  • PHP version: 5.3.16
Pdf format and A4 page size
May 20, 2011, 03:07:03 am
I understand that version 3.4.2 will contain an option to change the paper size to which pdf prints, but is there a way to do this now? A runaround? A hack?

I have just changed the setting "letter" to a4 in dompdf.config.php, but even after clearing cache and starting a new template it still reports letter
« Last Edit: May 20, 2011, 03:48:15 am by TheoRichel »

TheoRichel

  • I post frequently
  • ***
  • Posts: 122
  • Karma: 0
  • CiviCRM version: 4.2.1
  • CMS version: Drupal 6.24
  • MySQL version: 5.9
  • PHP version: 5.3.16
Re: Pdf format and A4 page size
May 20, 2011, 05:22:21 am
I think I have solved it. Not only is it apparently necessary to change the setting in dompdf.config.php, but also the file cpdf_adapter.cls.php this part (line 202). Below the corrected version:<code>
function __construct($paper = "a4", $orientation = "portrait") {

    if ( is_array($paper) )
      $size = $paper;
    else if ( isset(self::$PAPER_SIZES[mb_strtolower($paper)]) )
      $size = self::$PAPER_SIZES[mb_strtolower($paper)];
    else
      $size = self::$PAPER_SIZES["a4"];</code>

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Installing CiviCRM »
  • Drupal Installations (Moderator: Piotr Szotkowski) »
  • Pdf format and A4 page size

This forum was archived on 2017-11-26.