Module: Asciidoctor::Prawn::Images
- Defined in:
- lib/asciidoctor/pdf/ext/prawn/images.rb
Instance Method Summary collapse
-
#image(file, opts = {}) ⇒ Object
Dispatch to suitable image method in Prawn based on file extension.
- #recommend_prawn_gmagick?(err, image_format) ⇒ Boolean
Instance Method Details
#image(file, opts = {}) ⇒ Object
Dispatch to suitable image method in Prawn based on file extension.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/asciidoctor/pdf/ext/prawn/images.rb', line 7 def image file, opts = {} # FIXME: handle case when SVG is an IO object if ::String === file if ((opts = opts.dup).delete :format) == 'svg' || (file.downcase.end_with? '.svg') #opts[:enable_file_requests_with_root] = (::File.dirname file) unless opts.key? :enable_file_requests_with_root #opts[:enable_web_requests] = allow_uri_read if !(opts.key? :enable_web_requests) && (respond_to? :allow_uri_read) #opts[:cache_images] = cache_uri if !(opts.key? :cache_images) && (respond_to? :cache_uri) #opts[:fallback_font_name] = fallback_svg_font_name if !(opts.key? :fallback_font_name) && (respond_to? :fallback_svg_font_name) if (fit = opts.delete :fit) && !(opts[:width] || opts[:height]) image_info = svg (::File.read file, mode: 'r:UTF-8'), opts do |svg_doc| # NOTE: fit to specified width, then reduce size if height exceeds bounds svg_doc.calculate_sizing requested_width: fit[0] if svg_doc.sizing.output_width != fit[0] svg_doc.calculate_sizing requested_height: fit[1] if svg_doc.sizing.output_height > fit[1] end else image_info = svg (::File.read file, mode: 'r:UTF-8'), opts end if ::Asciidoctor::Logging === self && !scratch? && !(warnings = image_info[:warnings]).empty? warnings.each {|warning| log :warn, %(problem encountered in image: #{file}; #{warning}) } end image_info else ::File.open(file, 'rb') {|fd| super fd, opts } end else super end end |
#recommend_prawn_gmagick?(err, image_format) ⇒ Boolean
36 37 38 |
# File 'lib/asciidoctor/pdf/ext/prawn/images.rb', line 36 def recommend_prawn_gmagick? err, image_format ::Prawn::Errors::UnsupportedImageType === err && !(defined? ::GMagick::Image) && ((err..include? 'PNG') || (%w(jpg png).none? image_format)) end |