Guest User

Untitled

a guest
Oct 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. public function imprimir(Articulo $articulo){
  2. $deciso='descargas/'.$articulo->titulo.'.docx';
  3. if(!file_exists($deciso)){
  4. $phpWord=new PhpOfficePhpWordPhpWord();
  5. $phpWord->getSettings()->setThemeFontLang(new Language(Language::ES_ES));
  6. $section=$phpWord->addSection();
  7.  
  8. $text=$section->addText($articulo->titulo, array('name'=>'Arial','size' => 15,'bold' => true));
  9. $section->addImage($articulo->foto->ruta(), array('width'=>400, 'height'=>300, 'align'=>'center'));
  10. $general=array('bold'=>true);
  11.  
  12. $text=$section->addText($articulo->texto,$general);
  13. $text=$section->addText("Articulo publicado por ".$articulo->user->nombre()." en el Aullido Vespertino el ".$articulo->created_at->format('d/m/Y'));
  14.  
  15. $objWriter = PhpOfficePhpWordIOFactory::createWriter($phpWord, 'Word2007');
  16. $objWriter->save($deciso);
  17. }
  18. return response()->download(public_path($deciso));
  19. }
Add Comment
Please, Sign In to add comment