Method: IsoDoc::PresentationXMLConvert#eps2svg
- Defined in:
- lib/isodoc/presentation_function/image.rb
#eps2svg(img) ⇒ Object
113 114 115 116 117 118 119 120 121 |
# File 'lib/isodoc/presentation_function/image.rb', line 113 def eps2svg(img) return unless eps?(img["mimetype"]) img["mimetype"] = "image/svg+xml" if src = eps_to_svg(img) img["src"] = src img.children = "" end end |