gpt4 book ai didi

ruby-on-rails - 使用 Prawn 添加图像,得到错误:Prawn::Errors::UnsupportedImageType,PNG 使用不支持的隔行扫描方法

转载 作者:行者123 更新时间:2023-12-05 01:12:40 36 4
gpt4 key购买 nike

我使用 Prawn 创建 pdf 文件,我想将 Logo 放入文件中。我看过这个网站 Creating pdf引用如何添加图像。

这是我在 ExamResultPdf.rb 中的代码生成pdf的文件:

  def initialize(exam, view)
super(top_margin: 70)
@exam = exam
exam_number # line 9, I removed codes are not relevant
end

def exam_number
logo_path = "#{Rails.root}/app/assets/images/logo_hoasen.png"
image logo_path, height: 200, width: 200
text "Examination Result \##{@exam.id}", size: 30, style: :bold
end

但是当我去页面 /result.pdf ,它有错误:
Prawn::Errors::UnsupportedImageType in ExamsController#result
PNG uses unsupported interlace method

# Trace
app/pdfs/exam_result_pdf.rb:18:in `exam_number'
app/pdfs/exam_result_pdf.rb:9:in `initialize'
app/controllers/exams_controller.rb:43:in `new'
app/controllers/exams_controller.rb:43:in `block (2 levels) in result'
app/controllers/exams_controller.rb:40:in `result'

我的 exams_controller :
def result
@exam = Exam.find(params[:id])
@general_exam = GeneralExam.where(id: @exam.general_exam_id).first
@topic_questions = TopicQuestion.where(general_exam_id: @general_exam.id)
@exam_result = ExamResult.where(exam_id: @exam.id, user_id: @exam.user_id).first

respond_to do |format|
format.html
format.pdf do
pdf = ExamResultPdf.new(@exam, view_context) # line 43
send_data pdf.render, filename: "exam_result_#{@exam.id}",
type: "application/pdf",
disposition: "inline"
end
end
end

所以我想问一下为什么会出现这个错误, Prawn 不支持png文件?如何将图像放入pdf文件?

更新

我用过 jpgjpeg文件,但它也不起作用。

最佳答案

PNG 有很多种类型——绝大多数都适用于 Prawn ,但也有一些不适用于。

最简单的选择是将其转换为 JPG 或将其重新保存为非隔行扫描的 PNG。

关于ruby-on-rails - 使用 Prawn 添加图像,得到错误:Prawn::Errors::UnsupportedImageType,PNG 使用不支持的隔行扫描方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13741110/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com