将Tinymce与dompdf集成

时间:2018-07-22 21:38:47

标签: php laravel dompdf

我正在使用tinymce,并使用“ laravel-tinymce-simple-imageupload”包上传了图片。因此,我有一个页面,用户可以在其中选择注册类型,并在tinymce文本区域中输入一些内容,以将该内容与选定的注册类型相关联。

在文本区域中,用户还可以使用tinymce-simple-image-upload上传图像,并且这些图像存储在“ ~/projects/proj/public/img/image_15....”中。

内容存储在证书表中“内容”列中的数据库中,例如:

<p>certificate test<img src="../../../img/image_1532441196_7GTrIzUnb.jpeg" 
   alt="" width="1200" height="900" /></p>

错误:问题是我有下面的代码来获取带有与特定注册相关的证书内容的pdf文件,并且可以正常工作。但是下载的pdf文件中,如果认证内容中包含图片,则该图片不会出现在pdf中,而会在pdf中显示该错误而不显示该错误“ Image not found or type unknown”。

你知道为什么吗?

从pdf格式的数据库中获取证书HTML的代码:

public function getCertificateInfo($regID)
    {

        $participants = Participant::where('registration_id', $regID)
            ->whereHas('registration_type', function ($query) {
                $query->where('certificate_available', 'Y');
            })
            ->with('registration_type.certificate')
            ->get();

        $content = '';
        foreach ($participants as $participant) {
          $content .=
          '<div style="page-break-inside: avoid; page-break-after: always;">
                  '.$participant->registration_type->certificate->content.'</div>';
        }

        $pdf = app()->make('dompdf.wrapper');

        $pdf->getDomPDF()->setBasePath(public_path().'/../../');

        $pdf->loadHTML($content);

        return $pdf->download('certificates.pdf');

    }

类似于html静态文件一样,图片显示在下载的pdf中:

  $pdf = app()->make('dompdf.wrapper');


   $pdf->loadHTML('
    <p>cert1<img src="'.public_path().
    '/img/image_1532441196_7GT.jpeg" 
    alt="" width="1200" height="900" /></p>');


 return $pdf->download('certificates.pdf');

TinyMce代码:

tinymce.init({
          selector:'textarea',
          plugins: 'image code link',
          relative_urls: true,

         file_browser_callback: function(field_name, url, type, win) {
            // trigger file upload form
            if (type == 'image') $('#formUpload input').click();
            }
});

$ content变量显示如下:

"""
<div style="page-break-inside: avoid; page-break-after: always;">\n
    <p>cert1<img src="../../../img/image_1532441196_7GT.jpeg" 
    alt="" width="1200" height="900" /></p></div> ▶
</div>
"""

certificateController中的代码,用于将证书内容(在tinymce文本区域中引入的内容)插入数据库:

 public function update(Request $request){

        $registrationType = RegistrationType::where('id', $request->registrationType)->first();

        $certificate = $registrationType->certificate;

        // if no certificate exists for this type, create it
        if(!$certificate ) {
            $certificate = new Certificate();
        }

        // the certificate_content is the textarea with the tinymce plugin
        $certificate->content = $request->certificate_content;
        $certificate->save();

        $registrationType->certificate_id = $certificate->id;
        $registrationType->save();

        $certificateContent = RegistrationType::with('certificate')->where('id', $request->registrationType)->first();

        Session::flash('success','Certificate configured with success for the selected registration type.');

        return redirect()->back();

    }

2 个答案:

答案 0 :(得分:0)

更改:

array1.filter(x => array2.every(y => x.id !== (y.id || y.token)));

收件人:

$pdf->getDomPDF()->setBasePath(public_path().'/../../');

然后您只需要

$pdf->getDomPDF()->setBasePath(public_path());

要达到这一点,我们需要知道其中的内容:

$pdf->loadHTML('<p>cert1<img src="/img/image_1532441196_7GT.jpeg" 
alt="" width="1200" height="900" /></p>');

您的内容数据存储方式如下:

$participant->registration_type->certificate->content

要解决此问题,您可以更新数据库中的数据以将其更改为

<p>certificate 1<img src="../../../img/image_1532441196_7GT.jpeg" alt="" width="1200" height="900" /></p>

或者您可以在将内容转换为pdf之前对其进行转换:

<p>certificate 1<img src="img/image_1532441196_7GT.jpeg" alt="" width="1200" height="900" /></p>

我不知道为什么将img src与html一起存储-这是一种不好的做法。而且我不知道这些数据还在哪里使用。如果仅使用此pdf格式生成数据,则可以在数据库中修改数据,以保持php代码更整洁。但是,如果您将该内容与其他页面小部件一起用于其他地方,则可能需要保留此数据。

答案 1 :(得分:0)

您必须使用完整的服务器路径。 要解决此问题,您必须将../../../替换为projects/proj/public 这样做吧。

<?php str_replace('../../../','projects/proj/public',$content); ?>

之后就这样笑了。

<img src="{{ public_path("projects/proj/public/img/".$ImageName) }}" alt="">