Skip to content

rasem is a pure ruby gem that allows you to describe your SVG images in ruby code

License

Notifications You must be signed in to change notification settings

aseldawy/rasem

Repository files navigation

rasem is a pure ruby gem that allows you to describe your SVG images in ruby code.

  • Did you ever want to visualize some data in a nice image?

  • Do you want to draw a complex image that is easier to describe using a code?

  • Would you like to power your HTML 5 site with nicely drawn SVG images?

  • Do you need to generate nice images from your ruby code?

  • Are you fed up with using DIVs and Javascript to draw simple graphs?

  • Is your server overwhelmed with sending PNG images that can be described in a few bytes using SVG?

Rasem allows you to generate SVG images that can be easily exported to other formats and embed in an HTML 5 page.

  • Draw basic elements: line, rectangle, rouned rectangle, circle, ellipse, polygon and polyline.

  • Use SVG styles such as stroke-width, opacity and fill.

  • Use SVG transformations such as translate, scale, rotate, skewX/Y and matrix

  • Create SVG groups for better editing in SVG editors.

  • Create SVG paths using ruby blocks

  • Use definitions to create shapes and reuse them in your image

  • Create SVG gradients

Coming features:

  • Include all SVG standard elements such as filters

  • Create default rake and thor tasks to convert your .rasem files to .svg.

  • Embed other images in your SVG image

  • Output to more formats such as PNG.

Rasem is still in alpha release. Please report your bugs so that we can work on it. You are welcome to contribute to the project by adding more features and fixing bugs. The end goal of the project is to fully support SVG standard and make it easy to use.

geminstallrasem

There are two main methods to generate images with Rasem.

Create a file with extension .rasem. Here is a sample file test.rasem

self.width = 100self.height = 100circle20, 20, 5circle50, 50, 5line20, 20, 50, 50

Save this file and execute the command

rasemtest.rasem

A file test.svg will be generated.

You can generate the image from your ruby code. This has several uses such as sending the image on the fly from a Rails application.

Here is a simple example

require'rasem'img = Rasem::SVGImage.new(:width=>100, :height=>100) docircle20, 20, 5circle50, 50, 5line20, 20, 50, 50endputsimg.output

img.output is the SVG code generated for this images.

The following examples are for .rasem files. These are actually ruby scripts that are executed to generate the image. So, you can write arbitrary ruby code in .rasem files as you will see.

simple_graph.rasem

nodes = [[10,10], [20,20], [10,20]] radius = 3with_style:fill=>"white", :stroke=>"black"dofornodeinnodescirclenode.first, node.last, radiusendendlinenodes[0].first, nodes[0].last, nodes[1].first, nodes[1].last, :stroke=>"blue"

Here is a more sophisticated example.

tictactoe.rasem

self.width = 150self.height = 150board = [['x', 'o', 'x'], ['o', '-', 'o'], ['x', 'o', 'x']] defdraw_x(x,y) group:stroke=>"red"dolinex-20, y-20, x+20, y+20linex-20, y+20, x+20, y-20endenddefdraw_o(x,y) circlex, y, 20, :stroke=>"blue", :fill=>"white"endgroup:stroke=>"black"dorectangle0, 0, 150, 150, :stroke_width=>2, :fill=>"white"line50, 0, 50, 150line100, 0, 100, 150line0, 50, 150, 50line0, 100, 150, 100endboard.each_with_indexdo|row, row_index|row.each_with_indexdo|cell, column_index|ifcell=="x"draw_xrow_index*50+25, column_index*50+25elsifcell=="o"draw_orow_index*50+25, column_index*50+25endendend

Here are some examples that show how you can generate images from your ruby code.

You can generate SVG and store it to file

img = Rasem::SVGImage.new(:width => 100, :height => 100) img.line(0, 0, 100, 100) File.open("test.svg", w") do |f| img.write(f) end

You can use pass a block to SVGImage.new to make things more compact

img = Rasem::SVGImage.new(100, 100) doline(0, 0, 100, 100) end# Image is closed automatically# Write to file

You can make your code even more compact by passing the file as a last argument to SVGImage.new

File.open("test.svg", "w") do|f|Rasem::SVGImage.new({:width=>100, :height=>100}, f) doline(0, 0, 100, 100) endend

You can use transformations on created objects (translate, scale, rotate, skew, matrix)

img = Rasem::SVGImage.new(:width=>100, :height=>100) docircle(0, 0, 10).translate(50, 50).scale(2, 1.5) end

Here is an example showing how to generate a path using ruby code.

require'rasem'width = 100height = 200img = Rasem::SVGImage.new(:width=>width, :height=>height) dopath("stroke"=>"black") domoveToA(0, height/2.0) vlineTo(height/2.0-50) curveTo(50, 40, 0, 0, 50, 0) curveTo(-30, -50, 0, 0, 10, -30) vlineTo(-(height/2.0-60)) endendFile.open("path.svg", "w") do|f|img.write(f) end

Using definitions and reuse them later

img = Rasem::SVGImage.new(:width=>100, :height=>100) dodefsdogroup(:id=>"group1") docircle(0, 0, 20) text(0, 5, :fill=>"red"){raw"hi!" } endenduse("group1", :x=>50, :y=>25) use("group1", :x=>50, :y=>75, :fill=>"blue") end

Ruby method def_group to use definitions. It create a group inside ‘defs’ with the given id and populate it using the block. The second optional argument controls the behaviour if the id is already in use, you can :fail, :update the existing element (and return the new one), or :skip the new one (effectively skipping the block, and returning the existing element).

img = Rasem::SVGImage.new(:width=>100, :height=>100) dog = def_group("group1") docircle(0, 0, 20) endg = def_group("group1", :update) docircle(0, 0, 20) text(0, 5, :fill=>"red"){raw"hi!" } enduse(g, :x=>50, :y=>25) use(g, :x=>50, :y=>75, :fill=>"blue") end

An example of gradients usage

img = Rasem::SVGImage.new(:width=>100, :height=>100) dor1 = radialGradient("rgrad1") dostop("0%", "green", 1) stop("100%", "blue", 1) endr2 = radialGradient("rgrad2") dostop("0%", "yellow", 1) stop("100%", "red", 1) endr2 = radialGradient("rgrad2",{}, :skip) dostop("0%", "blue", 1) stop("100%", "red", 1) endcircle(50, 25, 20, :fill=>r1.fill) circle(50, 75, 20, :fill=>r2.fill) end
  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it

  • Fork the project

  • Start a feature/bugfix branch

  • Commit and push until you are happy with your contribution

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright © 2011 Ahmed Eldawy. See LICENSE.txt for further details.

About

rasem is a pure ruby gem that allows you to describe your SVG images in ruby code

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 5

Languages