Sha256: 5085b7d3356eda33edad74559f7f7610aa5bf9192ff883d3e2ba0e4ec81bd547

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

require_relative 'docx_single_gradient_color'
# docx Gradient Color
module OoxmlParser
  class DocxGradientColor < OOXMLDocumentObject
    attr_accessor :gradient_stops, :type, :path

    def initialize(colors = [])
      @gradient_stops = colors
    end

    def self.parse(gradient_fill_node)
      gradient_color = DocxGradientColor.new
      gradient_fill_node.xpath('*').each do |grad_fill_color_child|
        case grad_fill_color_child.name
        when 'gsLst'
          grad_fill_color_child.xpath('a:gs', 'xmlns:a' => 'http://schemas.openxmlformats.org/drawingml/2006/main').each do |gradient_single_color_node|
            # gradient_single_color_node.xpath('*').each do |gradient_color_node|
            single_gradient_color = DocxSingleGradientColor.new
            single_gradient_color.color = Color.parse_color_model(gradient_single_color_node)
            single_gradient_color.position = gradient_single_color_node.attribute('pos').value.to_f / 1_000.0
            gradient_color.gradient_stops << single_gradient_color
          end
        when 'path'
          gradient_color.path = grad_fill_color_child.attribute('path').value.to_sym
        end
      end
      gradient_color
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ooxml_parser-0.1.2 lib/ooxml_parser/common_parser/common_data/alternate_content/drawing/graphic/shape/shape_properties/color/gradient_color/docx_gradient_color.rb
ooxml_parser-0.1.1 lib/ooxml_parser/common_parser/common_data/alternate_content/drawing/graphic/shape/shape_properties/color/gradient_color/docx_gradient_color.rb