Sha256: 31f6688a2c6b6a91f98dcfec9f9e8e0d108a93a329190e55e660004f9105cfc6

Contents?: true

Size: 1.69 KB

Versions: 18

Compression:

Stored size: 1.69 KB

Contents

#--
# $Id: clippath.rb,v 1.4 2008/02/24 18:26:36 rmagick Exp $
# Copyright (C) 2008 Timothy P. Hunter
#++
module Magick
    class RVG

        class ClipPath
            include ShapeConstructors
            include UseConstructors
            include TextConstructors
            include Describable
            include Stylable
            include Duplicatable

            # Create a clipping path. Within the block create an outline
            # from one or more paths, basic shapes, text objects, or +use+.
            # Everything drawn within the outline will be displayed.
            # Anything drawn outside the outline will not.
            #
            # If the clipping path contains a +use+, it
            # must directly reference path, basic shape, or text objects.
            #
            # Attach the clipping path to an object with the :clip_path style.
            def initialize(clip_path_units='userSpaceOnUse')
                super()
                if ! ['userSpaceOnUse', 'objectBoundingBox'].include?(clip_path_units)
                    raise ArgumentError, "undefined value for clip path units: #{clip_path_units}"
                end
                @clip_path_units = clip_path_units
                @content = Content.new
                yield(self) if block_given?
            end

            def add_primitives(gc, style)   #:nodoc:
                name = __id__.to_s
                gc.define_clip_path(name) do
                    gc.clip_units(@clip_path_units)
                    @content.each { |element| element.add_primitives(gc) }
                end
                gc.clip_path(name)
            end

        end     # class ClipPath

    end # class RVG
end # module Magick

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
rmagick4j-0.4.0-java lib/rvg/clippath.rb
rmagick4j-0.3.9-java lib/rvg/clippath.rb
rmagick4j-0.3.8 lib/rvg/clippath.rb
rmagick-2.3.0 lib/rvg/clippath.rb
rmagick-2.5.1 lib/rvg/clippath.rb
rmagick-2.6.0 lib/rvg/clippath.rb
rmagick-2.5.2 lib/rvg/clippath.rb
rmagick-2.4.0 lib/rvg/clippath.rb
rmagick-2.5.0 lib/rvg/clippath.rb
rmagick-2.7.2 lib/rvg/clippath.rb
rmagick-2.8.0 lib/rvg/clippath.rb
rmagick-2.7.1 lib/rvg/clippath.rb
rmagick-2.7.0 lib/rvg/clippath.rb
rmagick-2.9.0 lib/rvg/clippath.rb
rmagick4j-0.3.5 lib/rvg/clippath.rb
rmagick-2.9.1 lib/rvg/clippath.rb
rmagick4j-0.3.7 lib/rvg/clippath.rb
rmagick4j-0.3.6 lib/rvg/clippath.rb