Blame view

export/PHPRtfLite-1.3.1/samples/images.php 4.45 KB
f90e19c3   Andrea Petta   plugin update
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
  <?php
  
  $dir = dirname(__FILE__);
  require_once $dir . '/../lib/PHPRtfLite.php';
  
  // register PHPRtfLite class loader
  PHPRtfLite::registerAutoloader();
  
  // rtf document
  $rtf = new PHPRtfLite();
  
  //paragraph formats
  $parFormat = new PHPRtfLite_ParFormat();
  
  $parGreyLeft = new PHPRtfLite_ParFormat();
  $parGreyLeft->setShading(10);
  
  $parGreyCenter = new PHPRtfLite_ParFormat(PHPRtfLite_ParFormat::TEXT_ALIGN_CENTER);
  $parGreyCenter->setShading(10);
  
  // header
  $header = $rtf->addHeader('first');
  $header->addImage($dir . '/sources/rtf_thumb.jpg', $parFormat);
  $header->writeText('Image in header.', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  
  $sect = $rtf->addSection();
  $sect->writeText('Images with PHPRtfLite.', new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
  
  $sect->writeText('<br>Here is .jpg image. <tab>', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $sect->addImage($dir . '/sources/rtf_thumb.jpg', null);
  
  $sect->writeText('<br>Here is .png image. <tab>', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $sect->addImage($dir . '/sources/html.png', null);
  
  $sect->writeText('<br><br><b>Formating sizes of images:</b>', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  
  $table = $sect->addTable();
  $table->addRows(3, 4.5);
  $table->addRow(6);
  $table->addColumnsList(array(7.5, 6.5));
  
  $table->writeToCell(1, 1, '<br> Original size.', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  //getting cell object, writing text and adding image
  $cell = $table->getCell(1, 2);
  $cell->writeText('<br>   ', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $cell->addImage($dir . '/sources/cats.jpg', null);
  
  $table->writeToCell(2, 1, '<br> Width is set.', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  //writing to cell and adding image from table object
  $table->writeToCell(2, 2, '<br>   ', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $table->addImageToCell(2, 2, $dir . '/sources/cats.jpg', null, 5);
  
  $table->writeToCell(3, 1, '<br> Height is set.', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $table->writeToCell(3, 2, '<br>   ', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $table->addImageToCell(3, 2, $dir . '/sources/cats.jpg', null, 0, 3.5);
  
  $table->writeToCell(4, 1, '<br> Both: width and height are set.', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $cell = $table->getCell(4, 2);
  $cell->writeText('<br>   ', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $img = $cell->addImage($dir . '/sources/cats.jpg', null, 3, 5);
  
  $sect->writeText('<page/><b>Borders of images</b>', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $table = $sect->addTable();
  $table->addRows(2, 4.5);
  $table->addRows(2, 6);
  $table->addColumnsList(array(7.5, 6.5));
  
  $table->writeToCell(1, 1, '<br> Sample borders', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $cell = $table->getCell(1, 2);
  $cell->writeText('<br>   ', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $img = $cell->addImage($dir . '/sources/cats.jpg', null);
  $border = PHPRtfLite_Border::create($rtf, 3, '#000000');
  $img->setBorder($border);
  
  $table->writeToCell(2, 1, '<br> Borders with space', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());
  $cell = $table->getCell(2, 2);
  
  $img = $cell->addImage($dir . '/sources/cats.jpg', null);
  
  $borderFormatBlue = new PHPRtfLite_Border_Format(2, '#0000ff', 'simple', 0.5);
  $borderFormatRed = new PHPRtfLite_Border_Format(2, '#ff0000', 'simple', 0.5);
  $border = new PHPRtfLite_Border($rtf);
  $border->setBorderLeft($borderFormatRed);
  $border->setBorderTop($borderFormatBlue);
  $border->setBorderRight($borderFormatRed);
  $border->setBorderBottom($borderFormatBlue);
  $img->setBorder($border);
  
  $table->writeToCell(3, 1, '<br> Image centered by ParFormat', new PHPRtfLite_Font());
  $cell = $table->getCell(3, 2);
  $parFormatCenter = new PHPRtfLite_ParFormat(PHPRtfLite_ParFormat::TEXT_ALIGN_CENTER);
  $img = $cell->addImage($dir . '/sources/cats.jpg', $parFormatCenter);
  
  $table->writeToCell(4, 1, '<br> Image centered horizontal and vertically by cell', new PHPRtfLite_Font());
  $cell = $table->getCell(4, 2);
  $cell->setTextAlignment(PHPRtfLite_Table_Cell::TEXT_ALIGN_CENTER);
  $cell->setVerticalAlignment(PHPRtfLite_Table_Cell::VERTICAL_ALIGN_CENTER);
  $img = $cell->addImage($dir . '/sources/cats.jpg');
  
  $sect->writeText('<b>Images in paragraph</b><br><br>', new PHPRtfLite_Font(), $parGreyLeft);
  $img = $sect->addImage($dir . '/sources/html.png', $parGreyCenter);
  $img->setWidth(1.5);
  
  // save rtf document
  $rtf->save($dir . '/generated/' . basename(__FILE__, '.php') . '.rtf');