����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.212 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/muebles/pos11/core/controller/PhpWord/Writer/Word2007/Part/ |
Upload File : |
<?php /** * This file is part of PHPWord - A pure PHP library for reading and writing * word processing documents. * * PHPWord is free software distributed under the terms of the GNU Lesser * General Public License version 3 as published by the Free Software Foundation. * * For the full copyright and license information, please read the LICENSE * file that was distributed with this source code. For the full list of * contributors, visit https://github.com/PHPOffice/PHPWord/contributors. * * @link https://github.com/PHPOffice/PHPWord * @copyright 2010-2014 PHPWord contributors * @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3 */ namespace PhpOffice\PhpWord\Writer\Word2007\Part; /** * Word2007 font table writer: word/fontTable.xml * * @todo Generate content dynamically * @since 0.10.0 */ class FontTable extends AbstractPart { /** * Write fontTable.xml. * * @return string */ public function write() { $str = ''; $str .= '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>'; $str .= '<w:fonts ' . 'xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" ' . 'xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">'; $str .= '<w:font w:name="Times New Roman">'; $str .= '<w:panose1 w:val="02020603050405020304" />'; $str .= '<w:charset w:val="00" />'; $str .= '<w:family w:val="roman" />'; $str .= '<w:pitch w:val="variable" />'; $str .= '<w:sig w:usb0="E0002AFF" w:usb1="C0007841" w:usb2="00000009" w:usb3="00000000" ' . 'w:csb0="000001FF" w:csb1="00000000" />'; $str .= '</w:font>'; $str .= '<w:font w:name="Courier New">'; $str .= '<w:panose1 w:val="02070309020205020404" />'; $str .= '<w:charset w:val="00" />'; $str .= '<w:family w:val="modern" />'; $str .= '<w:pitch w:val="fixed" />'; $str .= '<w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" ' . 'w:csb0="000001FF" w:csb1="00000000" />'; $str .= '</w:font>'; $str .= '<w:font w:name="Wingdings">'; $str .= '<w:panose1 w:val="05000000000000000000" />'; $str .= '<w:charset w:val="02" />'; $str .= '<w:family w:val="auto" />'; $str .= '<w:pitch w:val="variable" />'; $str .= '<w:sig w:usb0="00000000" w:usb1="10000000" w:usb2="00000000" w:usb3="00000000" ' . 'w:csb0="80000000" w:csb1="00000000" />'; $str .= '</w:font>'; $str .= '<w:font w:name="Symbol">'; $str .= '<w:panose1 w:val="05050102010706020507" />'; $str .= '<w:charset w:val="02" />'; $str .= '<w:family w:val="roman" />'; $str .= '<w:pitch w:val="variable" />'; $str .= '<w:sig w:usb0="00000000" w:usb1="10000000" w:usb2="00000000" w:usb3="00000000" ' . 'w:csb0="80000000" w:csb1="00000000" />'; $str .= '</w:font>'; $str .= '<w:font w:name="Arial">'; $str .= '<w:panose1 w:val="020B0604020202020204" />'; $str .= '<w:charset w:val="00" />'; $str .= '<w:family w:val="swiss" />'; $str .= '<w:pitch w:val="variable" />'; $str .= '<w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" ' . 'w:csb0="000001FF" w:csb1="00000000" />'; $str .= '</w:font>'; $str .= '<w:font w:name="Cambria">'; $str .= '<w:panose1 w:val="02040503050406030204" />'; $str .= '<w:charset w:val="00" />'; $str .= '<w:family w:val="roman" />'; $str .= '<w:pitch w:val="variable" />'; $str .= '<w:sig w:usb0="A00002EF" w:usb1="4000004B" w:usb2="00000000" w:usb3="00000000" ' . 'w:csb0="0000019F" w:csb1="00000000" />'; $str .= '</w:font>'; $str .= '<w:font w:name="Calibri">'; $str .= '<w:panose1 w:val="020F0502020204030204" />'; $str .= '<w:charset w:val="00" />'; $str .= '<w:family w:val="swiss" />'; $str .= '<w:pitch w:val="variable" />'; $str .= '<w:sig w:usb0="E10002FF" w:usb1="4000ACFF" w:usb2="00000009" w:usb3="00000000" ' . 'w:csb0="0000019F" w:csb1="00000000" />'; $str .= '</w:font>'; $str .= '</w:fonts>'; return $str; } }