File: README.en

package info (click to toggle)
libnarray-ruby 0.5.9-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 564 kB
  • ctags: 564
  • sloc: ansic: 4,620; ruby: 1,513; python: 70; makefile: 5
file content (38 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

NAME

   NImage --- A Ruby Extension Library for displaying Images on X11
	      by Masahiro Tanaka 2000/07/05

DESCRIPTION

  NImage is a simple Ruby class for displaying 2-D Data as images
  on X11 display.

REQUIREMENT

  Ruby (ver 1.4.4 or later)
  NArray (ver 0.3.1 or later)

INSTALLATION

  ruby extconf.rb
  make
  make install

USAGE

  require "nimage"
  image = NArray.float(100,100) # some 2-D array
  win = NImage.show image
  win.close

ACKNOWLEDGMENT

  moriq-san for Ruby/X11 which is useful for prototyping

PS

  FITS image file is not included. Sorry.

END