python 富文本编辑器内容导出为pdf

Posted robertzhou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 富文本编辑器内容导出为pdf相关的知识,希望对你有一定的参考价值。

将富文本内容导出为pdf

class CourseMaterialExportPdfAPIView(generics.GenericAPIView):

    permission_classes = (IsAuthenticatedOrHasOpenid,)

    def get(self, request, *args, **kwargs):

        pk = kwargs.get(‘pk‘)

        try:

            material = CourseMaterial.objects.get(id=pk)

            content = material.content
            
            import re
			
            # 处理视频内容,因为不能展示视频,所以将视频的html代码转换为视频内容和连接
            pattern = re.compile(r‘<video.*?>‘)

            video_list = pattern.findall(content)

            sub_dic = dict()

            for video_tem_code in video_list:

                res = re.search(‘src=(.*?) ‘, video_tem_code)

                url = res.group(1)

                repl = ‘<p>视频内容地址:%s</p>‘ % url

                sub_dic[video_tem_code] = repl

            for string, repl in sub_dic.items():

                content = content.replace(string, repl)
			
            # 需要安装xhtml2pdf模块  pip install
            from xhtml2pdf import pisa
			# 处理汉字乱码问题
            from xhtml2pdf.default import DEFAULT_FONT
            
            DEFAULT_FONT[‘helvetica‘] = ‘yh‘
			
            #导出,直接下载pdf
            response = HttpResponse(content_type=‘application/pdf‘)
            response[‘Content-Disposition‘] = ‘attachment; filename=%s.pdf‘ % material.name
			
            #content为富文本的内容, response为保存生成的pdf的地方
            pisa.CreatePDF(StringIO(content), response)

            return response

        except CourseMaterial.DoesNotExist:

            return Response({‘status‘: 0, ‘error‘: ‘活动不存在‘})

以上是关于python 富文本编辑器内容导出为pdf的主要内容,如果未能解决你的问题,请参考以下文章

iOS 富文本编辑器(插入图片,设置字体)

C# 富文本内容生成PDF,用开源免费的类库

百度富文本编辑器 通过表单提交数据!php中获取不到富文本编辑器中的内容!有没有啥好的培训机构

django开发5_富文本编辑器

java jxls操作excel,怎么把富文本框的内容转换成excel格式的内容

微信小程序 富文本编辑器 editor