mirror of
https://github.com/shuchkin/simplexlsxgen.git
synced 2023-08-10 21:12:59 +03:00
1.3.12 font size
This commit is contained in:
parent
b46f63fce7
commit
5a154b24f9
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.3.12 (2023-03-31)
|
||||||
|
* ```<style font-size="32">Big Text</style>``` - font size in cells, thx [Andrew Robinson](https://github.com/mrjemson)
|
||||||
|
|
||||||
|
|
||||||
## 1.3.11 (2023-03-28)
|
## 1.3.11 (2023-03-28)
|
||||||
* freezePanes( corner_cell ) - freezePanes to keep an area of a worksheet visible while you scroll, corner_cell is not included, thx [Javier](https://github.com/xaviermdq)
|
* freezePanes( corner_cell ) - freezePanes to keep an area of a worksheet visible while you scroll, corner_cell is not included, thx [Javier](https://github.com/xaviermdq)
|
||||||
|
|
||||||
|
@ -72,6 +72,7 @@ $data = [
|
|||||||
['Italic + Hyperlink + Anchor', '<i><a href="https://github.com/shuchkin/simplexlsxgen">SimpleXLSXGen</a></i>'],
|
['Italic + Hyperlink + Anchor', '<i><a href="https://github.com/shuchkin/simplexlsxgen">SimpleXLSXGen</a></i>'],
|
||||||
['Green', '<style color="#00FF00">12345.67</style>'],
|
['Green', '<style color="#00FF00">12345.67</style>'],
|
||||||
['Bold Red Text', '<b><style color="#FF0000">12345.67</style></b>'],
|
['Bold Red Text', '<b><style color="#FF0000">12345.67</style></b>'],
|
||||||
|
['Size 32 Font', '<style font-size="32">Big Text</style>'],
|
||||||
['Blue Text and Yellow Fill', '<style bgcolor="#FFFF00" color="#0000FF">12345.67</style>'],
|
['Blue Text and Yellow Fill', '<style bgcolor="#FFFF00" color="#0000FF">12345.67</style>'],
|
||||||
['Border color', '<style border="#000000">Black Thin Border</style>'],
|
['Border color', '<style border="#000000">Black Thin Border</style>'],
|
||||||
['<top>Border style</top>','<style border="medium"><wraptext>none, thin, medium, dashed, dotted, thick, double, hair, mediumDashed, dashDot,mediumDashDot, dashDotDot, mediumDashDotDot, slantDashDot</wraptext></style>'],
|
['<top>Border style</top>','<style border="medium"><wraptext>none, thin, medium, dashed, dotted, thick, double, hair, mediumDashed, dashDot,mediumDashDot, dashDotDot, mediumDashDotDot, slantDashDot</wraptext></style>'],
|
||||||
@ -85,8 +86,7 @@ $data = [
|
|||||||
['Middle + Center', '<style height="50"><middle><center>Middle + Center</center></middle></style>'],
|
['Middle + Center', '<style height="50"><middle><center>Middle + Center</center></middle></style>'],
|
||||||
['Bottom + Right', '<style height="50"><bottom><right>Bottom + Right</right></bottom></style>'],
|
['Bottom + Right', '<style height="50"><bottom><right>Bottom + Right</right></bottom></style>'],
|
||||||
['<center>MERGE CELLS MERGE CELLS MERGE CELLS MERGE CELLS MERGE CELLS</center>', null],
|
['<center>MERGE CELLS MERGE CELLS MERGE CELLS MERGE CELLS MERGE CELLS</center>', null],
|
||||||
['<top>Word wrap</top>', "<wraptext>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book</wraptext>"]
|
['<top>Word wrap</top>', "<wraptext>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book</wraptext>"],
|
||||||
['Size 16 Font', '<style font-size="16">Big Text</style>'],
|
|
||||||
];
|
];
|
||||||
SimpleXLSXGen::fromArray($data)
|
SimpleXLSXGen::fromArray($data)
|
||||||
->setDefaultFont('Courier New')
|
->setDefaultFont('Courier New')
|
||||||
|
@ -112,9 +112,9 @@ class SimpleXLSXGen
|
|||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
$this->XF = [ // styles 0 - num fmt, 1 - align, 2 - font, 3 - fill, 4 - font color, 5 - bgcolor, 6 - border
|
$this->XF = [ // styles 0 - num fmt, 1 - align, 2 - font, 3 - fill, 4 - font color, 5 - bgcolor, 6 - border, 7 - font size
|
||||||
[self::N_NORMAL, self::A_DEFAULT, self::F_NORMAL, self::FL_NONE, 0, 0, ''],
|
[self::N_NORMAL, self::A_DEFAULT, self::F_NORMAL, self::FL_NONE, 0, 0, '', 0],
|
||||||
[self::N_NORMAL, self::A_DEFAULT, self::F_NORMAL, self::FL_GRAY_125, 0, 0, ''], // hack
|
[self::N_NORMAL, self::A_DEFAULT, self::F_NORMAL, self::FL_GRAY_125, 0, 0, '', 0], // hack
|
||||||
];
|
];
|
||||||
$this->XF_KEYS[implode('-', $this->XF[0])] = 0; // & keys
|
$this->XF_KEYS[implode('-', $this->XF[0])] = 0; // & keys
|
||||||
$this->XF_KEYS[implode('-', $this->XF[1])] = 1;
|
$this->XF_KEYS[implode('-', $this->XF[1])] = 1;
|
||||||
@ -388,7 +388,7 @@ class SimpleXLSXGen
|
|||||||
foreach ($this->XF as $xf) {
|
foreach ($this->XF as $xf) {
|
||||||
// 0 - num fmt, 1 - align, 2 - font, 3 - fill, 4 - font color, 5 - bgcolor, 6 - border, 7 - font size
|
// 0 - num fmt, 1 - align, 2 - font, 3 - fill, 4 - font color, 5 - bgcolor, 6 - border, 7 - font size
|
||||||
// fonts
|
// fonts
|
||||||
$F_KEY = $xf[2] . '-' . $xf[4];
|
$F_KEY = $xf[2] . '-' . $xf[4].'-'.$xf[7];
|
||||||
if (isset($F_KEYS[$F_KEY])) {
|
if (isset($F_KEYS[$F_KEY])) {
|
||||||
$F_ID = $F_KEYS[$F_KEY];
|
$F_ID = $F_KEYS[$F_KEY];
|
||||||
} else {
|
} else {
|
||||||
@ -626,18 +626,30 @@ class SimpleXLSXGen
|
|||||||
$cell = $this->sheets[$idx]['frozen'];
|
$cell = $this->sheets[$idx]['frozen'];
|
||||||
self::cell2coord($cell, $x, $y);
|
self::cell2coord($cell, $x, $y);
|
||||||
} else {
|
} else {
|
||||||
if (isset($this->sheets[$idx]['frozen'][0])) $x = $this->sheets[$idx]['frozen'][0];
|
if (isset($this->sheets[$idx]['frozen'][0])) {
|
||||||
if (isset($this->sheets[$idx]['frozen'][1])) $y = $this->sheets[$idx]['frozen'][1];
|
$x = $this->sheets[$idx]['frozen'][0];
|
||||||
|
}
|
||||||
|
if (isset($this->sheets[$idx]['frozen'][1])) {
|
||||||
|
$y = $this->sheets[$idx]['frozen'][1];
|
||||||
|
}
|
||||||
$cell = self::coord2cell($x, $y);
|
$cell = self::coord2cell($x, $y);
|
||||||
}
|
}
|
||||||
if ($x > 0 || $y > 0) {
|
if ($x > 0 || $y > 0) {
|
||||||
$split = '';
|
$split = '';
|
||||||
if ($x > 0) $split .= " xSplit=\"{$x}\"";
|
if ($x > 0) {
|
||||||
if ($y > 0) $split .= " ySplit=\"{$y}\"";
|
$split .= ' xSplit="'.$x.'"';
|
||||||
|
}
|
||||||
|
if ($y > 0) {
|
||||||
|
$split .= ' ySplit="'.$y.'"';
|
||||||
|
}
|
||||||
$activepane = 'bottomRight';
|
$activepane = 'bottomRight';
|
||||||
if ($x > 0 && $y == 0) $activepane = 'topRight';
|
if ($x > 0 && $y === 0) {
|
||||||
if ($x == 0 && $y > 0) $activepane = 'bottomLeft';
|
$activepane = 'topRight';
|
||||||
$SHEETVIEWS = "<sheetViews><sheetView tabSelected=\"1\" workbookViewId=\"0\"><pane{$split} topLeftCell=\"{$cell}\" activePane=\"{$activepane}\" state=\"frozen\"/></sheetView></sheetViews>";
|
}
|
||||||
|
if ($x === 0 && $y > 0) {
|
||||||
|
$activepane = 'bottomLeft';
|
||||||
|
}
|
||||||
|
$SHEETVIEWS = '<sheetViews><sheetView tabSelected="1" workbookViewId="0"><pane'.$split.' topLeftCell="'.$cell.'" activePane="'.$activepane.'" state="frozen"/></sheetView></sheetViews>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$COLS[] = '<cols>';
|
$COLS[] = '<cols>';
|
||||||
@ -711,9 +723,9 @@ class SimpleXLSXGen
|
|||||||
}
|
}
|
||||||
if (preg_match('/ font-size="([^"]+)"/', $m[1], $m2)) {
|
if (preg_match('/ font-size="([^"]+)"/', $m[1], $m2)) {
|
||||||
$FS = (int)$m2[1];
|
$FS = (int)$m2[1];
|
||||||
if($RH == 0){
|
if ($RH === 0) { // fix row height
|
||||||
$RH = (int)($FS * 1.25);
|
$RH = ($FS > $this->defaultFontSize) ? round($FS * 1.50,1) : 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (strpos($v, '<left>') !== false) {
|
if (strpos($v, '<left>') !== false) {
|
||||||
@ -1039,7 +1051,7 @@ class SimpleXLSXGen
|
|||||||
|
|
||||||
public static function raw($value)
|
public static function raw($value)
|
||||||
{
|
{
|
||||||
return "\0" . (string)$value;
|
return "\0" . $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function cell2coord($cell, &$x, &$y)
|
public static function cell2coord($cell, &$x, &$y)
|
||||||
@ -1047,9 +1059,15 @@ class SimpleXLSXGen
|
|||||||
$x = $y = 0;
|
$x = $y = 0;
|
||||||
$lettercount = 0;
|
$lettercount = 0;
|
||||||
$cell = str_replace([' ', '\t', '\r', '\n', '\v', '\0'], '', $cell);
|
$cell = str_replace([' ', '\t', '\r', '\n', '\v', '\0'], '', $cell);
|
||||||
if (empty($cell)) return;
|
if (empty($cell)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
$cell = strtoupper($cell);
|
$cell = strtoupper($cell);
|
||||||
for ($i = 0; $i < strlen($cell); $i++) if ($cell[$i] >= 'A' && $cell[$i] <= 'Z') $lettercount++;
|
for ($i = 0, $len = strlen($cell); $i < $len; $i++) {
|
||||||
|
if ($cell[$i] >= 'A' && $cell[$i] <= 'Z') {
|
||||||
|
$lettercount++;
|
||||||
|
}
|
||||||
|
}
|
||||||
if ($lettercount > 0) {
|
if ($lettercount > 0) {
|
||||||
$x = ord($cell[$lettercount - 1]) - ord('A');
|
$x = ord($cell[$lettercount - 1]) - ord('A');
|
||||||
$e = 1;
|
$e = 1;
|
||||||
@ -1058,15 +1076,18 @@ class SimpleXLSXGen
|
|||||||
$e++;
|
$e++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($lettercount < strlen($cell)) $y = ((int)substr($cell, $lettercount)) - 1;
|
if ($lettercount < strlen($cell)) {
|
||||||
|
$y = ((int)substr($cell, $lettercount)) - 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function coord2cell($x, $y, $absolute = false)
|
public static function coord2cell($x, $y, $absolute = false)
|
||||||
{
|
{
|
||||||
$c = '';
|
$c = '';
|
||||||
for ($i = $x; $i >= 0; $i = ((int)($i / 26)) - 1) $c = chr(ord('A') + $i % 26) . $c;
|
for ($i = $x; $i >= 0; $i = ((int)($i / 26)) - 1) {
|
||||||
if ($absolute) $absolute = '$'; else $absolute = '';
|
$c = chr(ord('A') + $i % 26) . $c;
|
||||||
return $absolute . $c . $absolute . ($y+1);
|
}
|
||||||
|
return ($absolute ? '$' : '') . $c . $absolute . ($y+1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function freezePanes($cell)
|
public function freezePanes($cell)
|
||||||
|
BIN
styles.png
BIN
styles.png
Binary file not shown.
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 190 KiB |
Loading…
Reference in New Issue
Block a user