Class: Powerpoint::Slide::Collage

Inherits:
Object
  • Object
show all
Includes:
Util
Defined in:
lib/powerpoint/slide/collage.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Util

#copy_media, #merge_variables, #pixle_to_pt, #read_template, #render_view, #require_arguments

Constructor Details

#initialize(options = {}) ⇒ Collage

Returns a new instance of Collage.



13
14
15
16
17
18
19
20
21
# File 'lib/powerpoint/slide/collage.rb', line 13

def initialize(options={})
  require_arguments [:title, :subtitle,:page_number,:logo, :task_icon, :image_information, :images], options
  options.each {|k, v| instance_variable_set("@#{k}", v)}
  @images = images
  @image_y_scale = image_information[1]
  @image_x_scale = image_information[0]
  @image_x_offset = image_information[2]
  @image_y_offset = image_information[3]
end

Instance Attribute Details

#image_informationObject (readonly)

Returns the value of attribute image_information.



11
12
13
# File 'lib/powerpoint/slide/collage.rb', line 11

def image_information
  @image_information
end

#imagesObject (readonly)

Returns the value of attribute images.



11
12
13
# File 'lib/powerpoint/slide/collage.rb', line 11

def images
  @images
end

#logoObject (readonly)

Returns the value of attribute logo.



11
12
13
# File 'lib/powerpoint/slide/collage.rb', line 11

def 
  @logo
end

#page_numberObject (readonly)

Returns the value of attribute page_number.



11
12
13
# File 'lib/powerpoint/slide/collage.rb', line 11

def page_number
  @page_number
end

#subtitleObject (readonly)

Returns the value of attribute subtitle.



11
12
13
# File 'lib/powerpoint/slide/collage.rb', line 11

def subtitle
  @subtitle
end

#task_iconObject (readonly)

Returns the value of attribute task_icon.



11
12
13
# File 'lib/powerpoint/slide/collage.rb', line 11

def task_icon
  @task_icon
end

#titleObject (readonly)

Returns the value of attribute title.



11
12
13
# File 'lib/powerpoint/slide/collage.rb', line 11

def title
  @title
end

Instance Method Details

#save(extract_path, index) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
# File 'lib/powerpoint/slide/collage.rb', line 23

def save(extract_path, index)
  @images.each do |image|
    copy_media(extract_path, image)
  end
  
  copy_media(extract_path, )
  copy_media(extract_path, task_icon)

  save_rel_xml(extract_path, index)
  save_slide_xml(extract_path, index)
end