else {
$ancho_columna = $attr2[$j+1] - $attr2[$j];
}
- $txt = $this->_marco->wordWrap(
- @$this->_tabla->getCellContents($i,$j), $ancho_columna,
- $estilo);
+ if (@$this->_tabla->getCellContents($i,$j)) {
+ $txt = $this->_marco->wordWrap(
+ @$this->_tabla->getCellContents($i,$j), $ancho_columna,
+ $estilo
+ );
+ }
+ else {
+ $txt = array (' ');
+ }
$txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
$max = max($estilo['alto_linea'] * count($txt), $max);