Size: px
Start display at page:

Download ""

Transcription

1 April, 2008

2

3 iii v HSV/HSB GIMP Postscript Postscript

4 iv 4.3 Postscript

5 v Postscript

6

7 nm 700 nm *1 A Red, Green, Blue *2 *1 1 nm = mm *2 3 2

8 2 1 R G X X 1 X 10 1 Y 2 Y 4

9 Red( ), Green( ), Blue( ) 3 RGB Cyan( ), Magenta( ), Yellow( ) 3 (CMY) (K) CMYK R Y M G C B R, G, B C. M, Y R, G, B 3 C, M, Y Y = R + G C = G + B M = B + R R, G, B C, M. Y 3 Cyan (W) R Magenta G Yellow B Cyan Magenta R G B C, M, Y

10 4 1 White W, Black K *3 W, K ( 1.2) W = R + G + B K = R, G, B (Color Space) (1,0,0) R 1.3 B (0,0,1) K (0,0,0) G (0,1,0) RGB C, M, Y, W *3 Blue B

11 1.5 HSV/HSB HSV/HSB RGB CMY(K) 3 (Hue) (Saturation) (Value, Brightness) HSV HSB HSB B RGB B HSV HSV * : *4 1

12 RGB CMYK RGB R,G,B ( ) ,1,2,..., = (0), 1(1), 2(2),..., A(10), B(11), C(12), D(13), E(14), F(15), 10(16), 11(17),..., F9(249), FA(250)FB(251), FC(252), FD(253), FE(254), FF(255) 1.1 HTML #FF Red (1, 0, 0) FF,00,00 Green (0, 1, 0) 00,FF,00 Blue (0, 0, 1) 00,00,FF Cyan (0, 1, 1) 00,FF,FF Magenta (1, 0, 1) FF,00,FF Yellow (1, 1, 0) FF,FF,00 White (1, 1, 1) FF,FF,FF Black (0, 0, 0) 00,00,00

13 1.7 GIMP GIMP GIMP UNIX, Widows, Mac *5 GIMP 1.5 RGB HSV CMYK 1.5 GIMP : 360 *5 Adobe Photoshop

14

15 (raster) (pixel) *1 R, G, B ( ) 1 ( ) *1

16 : 3 PC , RGB B *2 3 B = B KB 2.3 MB * ABC8ABC8ABC8ABC8ABC8ABC8ABC8ABC8ABC8ABC8 "ABC8" 4 10 *2 1 B 1 Byte( ) 2 1 bit( ) b *3

17 ABC8*0A *0A 0A (10 10 ) 40 7 *4 PNG, JPEG, GIF JPEG, PNG GIF PNG.png JPEG.jpg, jpeg GIF.gif 256 *4 JPEG JPEG

18 αξ *5 2.2 ( ) α 2.3 *5 ξ x

19 αξ αξ αξ αξ Postscript Adobe *6 Postscript *7 DTP *8 Postscript *6 *7 Postscript PS post( ) (script) *8 Desk-Top Publishing.

20 14 2 %!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: setrgbcolor moveto arc fill setrgbcolor moveto lineto lineto stroke /Times-Bold findfont 20 scalefont setfont moveto (ABC) show 2.5 ABC Postscript *9 DTP Postscript 1985 Java SVG Adobe DTP Adobe Illustrator Photoshop GNU Ghostscript Postscript * PDF, Portable Document Format PDF WWW PDF Adobe Postscript PDF OS * 11 *9 *10 1 Ghostscript Ghostscript *11 OS Windows

21 2.2 15

22 SVG SVG Scalable Vector Graphics Scalable scale SVG HTML XML W3C( XML MathML * 12 SVG * 13 HTML SVG Wikipedia <?xml version="1.0"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" " <svg xmlns=" <style type="text/css"> circle:hover {fill-opacity:0.9;} </style> <g style="fill-opacity:0.7;"> <circle cx="6.5cm" cy="3.2cm" r="100" style="fill:red; stroke:black" /> <circle cx="4.6cm" cy="6.0cm" r="100" style="fill:blue; stroke:black" /> <circle cx="8.2cm" cy="6.0cm"r="100" style="fill:green; stroke:black" /> </g> </svg> 2.6 SVG : *12 SVG *13 rendering

23 17 3 Sourceforge netpbm project Netpbm * (Meadow/Emacs) feet.pbm P1 # feep.pbm *1

24 a b C-a c C-k d C-y a C-k C-k b C-y 7 3. INS (Ovwrt ) INS (Ovwrt ) 6. GIMP 3.1 feep.pbm 3.1 PBM

25 feep.pgm, feep.ppm GIMP 3.2,3.3 P2 # feep.pgm P3 # feep.ppm PGM 3.3 PPM

26 PBM PBM Portable Bit Map *2 18 feep.pbm 3 P1 # feep.pbm 24 7 P1 # feep.pbm # (header) *2 bit map 1 bit PBM

27 PBM 16 x 20 PBM PBM 2 N N bit

28 PGM PGM Portable Gray Map PBM 2 19 feep.pgm P2 # feep.pgm PGM P2 PBM , 11, ( ) = F * PBM 0 1 *

29 PPM PPM Portable Pixel Map 19 feep.ppm P3 # feep.ppm P PGM RGB * PGM 8 12 PPM *5 * *5

30 PPM PPM 1. PPM P3 2. # # ppm001.rb puts "P3" puts "# PPM test" puts " " puts "255" for i in for j in print " " end end

31 puts print ppm001.rb puts puts "P3" print print "P3\n" print \n print puts for for for 2 (2D) *6 # doubleloop.rb for i in for j in print j, ",", i," " end print "\n" end , 1, 2,...,9 0, 1, 2,...,7 *6 2D 3D D dimension

32 26 3 j i 3.5 i j i, j ppm001.rb puts " " for i in for j in , , 100 nx, ny # ppm002.rb nx = 240; ny = 180 puts "P3" puts "# PPM test" puts "#{nx} #{ny}"

33 puts "255" for i in 0... nx for j in 0... ny print " " end end nx ny ppm002.rb a.. b a b a... b a b irb irb Ruby irb irb irb irb(main):001:0>

34 a = 120 a a * 2 30, 120 irb 1 Ruby * ppm002.rb puts "#{nx} #{ny}" (") #{ } irb x = 125 "x = #{x}" "#{x*3}" x = #{x} 2 #{x} x 3 x*3 ( ) C, Java *7

35 nx, ny n Number x n

36 PPM = Byte 340 KB ls ls -l 340 KB (ASCII code) irb irb(main):001:0>

37 => 20 irb irb "a" "a" irb(main):002:0>"a" => "A" 65.chr irb(main):003:0>65.chr => "A" "A" 65 "A" , "\024" RangeError: 256 out of char range char character (ASCII code) irb 8

38 ASCII : H A 20H SP (NUL) (DLE) SP P p 1 (SOH) (DC1)! 1 A Q a q 2 (STX) (DC2) " 2 B R b r 3 (ETX) (DC3) # 3 C S c s 4 (EOT) (DC4) $ 4 D T d t 5 (ENQ) (NAK) % 5 E U e u 6 (ACK) (SYN) & 6 F V f v 7 (BEL) (ETB) 7 G W g w 8 (BS) (CAN) ( 8 H X h x 9 (HT) (EM) ) 9 I Y i y A (NL) (SUB) * : J Z j z B (VT) (ESC) + ; K [ k { C (NP) (FS), < L \ l D (CR) (GS) - = M ] m } E (SO) (RS). > N ^ n ~ F (SI) (US) /? O _ o (DEL) 1. 1 Byte 2. 1 Byte (0x00 0xFF)

39 ppm002.rb # ppm002.rb nx = 240; ny = 180 puts "P3" puts "# PPM test" puts "#{nx} #{ny}" puts "255" for i in 0... nx for j in 0... ny print " " end end PPM 2 P6 " " 255.chr, 0.chr, 0.chr 3 2 ppm002.rb ppm003.rb

40 34 3 # ppm003.rb nx = 240; ny = 180 puts "P6" puts "# PPM test" puts "#{nx} #{ny}" puts "255" for i in 0... nx for j in 0... ny print 255.chr, 0.chr, 0.chr end end GIMP ls -l PPM

41 bicolor001.rb, bicolor002.rb 3.6 # bicolor001.rb nx = 240; ny = 180 puts "P6" puts "# PPM test" puts "#{nx} #{ny}" puts "255" r = 255.chr g = 200.chr b = 255.chr for i in 0... ny if i > ny / 2 then r = 0.chr end

42 36 3 for j in 0... nx print r, g, b end end # bicolor002.rb nx = 240; ny = 180 puts "P6" puts "# PPM test" puts "#{nx} #{ny}" puts "255" g = 200.chr b = 255.chr for i in 0... ny for j in 0... nx r = 255.chr if j > nx / 2 then r = 0.chr end print r, g, b end end r, g, b 3 RGB Ruby Cyan = 0.chr chr chr Magenta = 255.chr + 0.chr chr print Cyan

43 # bicolor004.rb cyan = 0.chr chr chr magenta = 255.chr + 0.chr chr color = cyan nx = 240; ny = 180 puts "P6" puts "# PPM test" puts "#{nx} #{ny}" puts "255" for i in 0... ny for j in 0... nx if i > ny / 2 then print magenta else print cyan end end end wheat #F5DEB3 orange #FFA500 hotpink #E179B4 tomato #FF6347 lavender #E6E6FA turquoise #40E0D0 16 HTML

44 38 3 Ruby, C, Java 16 0x Wheat = 0xF5.chr + 0xDE.chr + 0xB3.chr 0xFF 0xff Cyan = 0.chr + 0xFF.chr + 0xFF.chr magenta = 0xFF.chr + 0.chr + 0xFF.chr 3 4 4

45 *8 # grad001.rb nx = 400; ny = 80 g = 250 puts "P6" puts "# Draw Gradient " puts "#{nx} #{ny}" puts "255" for i in 0... ny for j in 0... nx r = j % 255 b = j % 255 print r.chr + g.chr + b.chr end end % ) test.rb *9 *8 (gradation) (gradient) *9

46 40 3 for i in puts i % 9 end for i j RGB r b

47 (x a) 2 + (y b) 2 = r 2 (3.1) (a, b) r ( 3.9 ) (a, b) r (x.y) ( 3.9 ) (x a) 2 + (y b) 2 < r 2 y r (a,b) r q O x p 3.9 r ( ) r 2 = p 2 + q 2 r = p 2 + q 2

48 nx, ny cx1, cy1 rad1 j i j i r A B 3.10 A B # circle001.rb nx = 240; ny = 180 cx1 = 100; cy1 = 60; rad1 = 50; srad1 = rad1 ** 2 indigo = 0x4b.chr + 0x00.chr + 0x82.chr gold = 0xff.chr + 0xd7.chr + 0x00.chr puts "P6" puts "# Draw Cirlce " puts "#{nx} #{ny}" puts "255" for i in 0... ny for j in 0... nx if (j - cx1) ** 2 + (i - cy1) ** 2 < srad1 then

49 print gold else print indigo end end end RGB ( 3.11 ) 3.11

50 (3.1) p(x a) 2 + q(y b) 2 = 1 (3.2) (3.2) p q p(x a) 2 q(y b) 2 = 1 (3.3) ( ) ( ) 3 5

51 x, y (2, 1) ( 1) 2 = 5 2 j j=cx i ( 4, 4) ( 3, 4) ( 2, 4) ( 1, 4) (0, 4) (1, 4) (2, 4) (3, 4) (4, 4) ( 4, 3) ( 3, 3) ( 2, 3) ( 1, 3) (0, 3) (1, 3) (2, 3) (3, 3) (4, 3) ( 4, 2) ( 3, 2) ( 2, 2) ( 1, 2) (0, 2) (1, 2) (2, 2) (3, 2) (4, 2) ( 4, 1) ( 3, 1) ( 2, 1) ( 1, 1) (0, 1) (1, 1) (2, 1) (3, 1) (4, 1) i=cy ( 4,0) ( 3,0) ( 2,0) ( 1,0) (0,0) (1,0) (2,0) (3,0) (4,0) ( 4,1) ( 3,1) ( 2,1) ( 1,1) (0,1) (1,1) (2,1) (3,1) (4,1) ( 4,2) ( 3,2) ( 2,2) ( 1,2) (0,2) (1,2) (2,2) (3,2) (4,2) ( 4,3) ( 3,3) ( 2,3) ( 1,3) (0,3) (1,3) (2,3) (3,3) (4,3) ( 4,4) ( 3,4) ( 2,4) ( 1,4) (0,4) (1,4) (2,4) (3,4) (4,4) 3.13 (0,0) x**2+y**

52 46 3 0, 1, 4, 9, 16, for i in puts i ** 2 % 255 end (i ** 2 + j ** 2) % 255 0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 25, 56, 89, 124, 161, 0, 41, 84, 129, 176, 25, 76, 129, 184, 41, 100, 161, 24, 89, 156, 25, 96, 169, 44, 121, 0, 81, 164, 49, 136, 25, 116, 9, 104, 1, # circle_grad001.rb nx = 400; ny = 400 r = 0; g = 0 cx1 = 200; cy1 = 200 puts "P6" puts "# Draw Gradient " puts "#{nx} #{ny}" puts "255" for i in 0... ny for j in 0... nx b = ((j-cx1) ** 2 + (i-cy1) ** 2) % 255 print r.chr + g.chr + b.chr end end

53 rand irb irb rand(6) rand(6) rand(6) rand rand(n) 0 n 1 rand(0) rand() 0 1 irb r = rand(256) r = rand(136)

54 (Buffer) [0,0,0] 2 # buff001.rb def print_buffer(buff,nx,ny) # for i in 0... ny for j in 0... nx r = buff[i][j][0] g = buff[i][j][1] b = buff[i][j][2] print r.chr + g.chr + b.chr end end end def print_header(nx,ny) # puts "P6" puts "# Bufferd version" print nx, " ", ny,"\n" puts 255 end nx = 400; ny = 300 # nx ny [0,0,0] # buff = Array.new(ny){Array.new(nx){[0,0,0]}} # print_header(nx,ny) # # for i in (ny / 2-20)... (ny / ) for j in (nx / 2-20)... (nx / ) buff[i][j] = [0xff,0xff,0] end

55 end # for i in 0... ny for j in 0... i buff[i][j][2] = 0xa0 end end print_buffer(buff,nx,ny) #

56

57 51 4 Postscript 4.1 Postscript Postscript Ghostscript Postscript(PS) Adobe Systems *1 Postscript Postscript Postscript PS (DTP) DTP Mac Apple Postscript Ghostscript(GS) Postscript GNU Unix, Windows, Mac *2 Ghostscript PS GSview Ghostscript GSview Postscript Postscript Java Graphics2D PS PS *1 Adobe *2 Ghostscript

58 52 4 Postscript Postscript Postscript Adobe *3 2 PDF Postscript Language Reference Manual(PLRM) Postscript Postscript Language Tutorial and Cookbook Blue Book Postscript *3

59 Ghostscript GS Cygwin GS gswin32 GS (250,300) moveto lineto stroke (120,70) ( 4.1) 4.1 Ghostscript Postscript (stack) 4.2 (1) 120 push 70 push 1 (3) (3) "moveto" moveto 2 ( pop ) (120, 70) (6) (1) (2) (3) moveto (4) (5) lineto 4.2 PS : (120,70) (250,300) (5) "lineto" 2 ( )

60 54 4 Postscript stroke

61 4.3 Postscript Postscript EPS Postscript DTP 1 EPS (Encapsulated Postscript) PS EPS BoundingBox 2 %!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: %%BoundingBox: 4 (4.3 ) A4 210 mm 297 mm %%BoundingBox: Postscript PS (pt) 1 pt = 1/72 = 25.4/72 mm = mm PS PS (0, 0) (EPS ) moveto lineto "r" rmoveto, rlineto % % EPS ( ) def def (definition) Ruby C x = 24 PS x

62 56 4 Postscript /x 200 def p /p1 { } def PS /m {moveto} def m moveto

63 Postscript 55, 250, pstack gs pstack gs pstack moveto pstack 1 pstack 20, 30 2 pstack GS pstack /p {pstack} def p Postscript add % => sub % => mul % => 98

64 58 4 Postscript div % => idiv % => mod % ( ) => 4 24 neg % => , 20 add pstack pstack add pstack ( +) Postscript 4 1 ( ) add 6 sub 1. ( )/ /4 (exchange) exch % => (duplicate) push 60 dup % => copy % => (roll) roll % =>

65 ( ) => exch neg exch => => => 260 ( )

66 60 4 Postscript setrgbcolor 0 1 RGB setgray setrgbcolor % 0.8 setgray % setlinewidth % 2 pt [3 3] 0 setdash % [] 0 setdash % moveto moveto moveto lineto lineto lineto lineto lineto lineto lineto lineto lineto stroke closepath fill stroke (100,150) (250,150) (100,150) (250,150) (100,150) (250,150) (50,50) (200,50) (50,50) (200,50) (50,50) (200,50)

67 ( ) x y x y arc stroke/fill 180 O newpath newpath newpath newpath arc arc arc stroke fill stroke (90,60) 50 (90,60)

68 62 4 Postscript (0, 0) translate O (translate) 2 (100, 80) %!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: arc stroke 0.5 setgray newpath translate arc stroke (100, 80) arc stroke

69 Postscript scale scale scale , (x, y) a b 1. x y translate (x, y) 2. a b scale 3. (0, 0) 20 (80, 40) 40,

70 64 4 Postscript arc stroke translate scale arc stroke /a 1/b scale 1/a 1/b x -y translate x y (0, 0) div div 80, 40 80, 40 neg arc stroke translate scale arc stroke 1 2 div div scale % 1 80 neg 40 neg translate % (20, 100), (30, 50), (100, 90) Postscript

71 rotate rotate rotate rotate translate translate % (50,50) 45 rotate % scale % arc stroke % div div scale % 45 neg rotate 50 neg 50 neg translate

72 66 4 Postscript translate (x 0, y 0) 2. moveto (0, r) translate rotate 60 x x 4. lineto (r, 0) closepath stroke x 60 x r (x0,y0) x repeat 5 Postscript repeat 5 5 { } repeat moveto 28 0 rlineto 0 10 rlineto rlineto closepath stroke (30, 30) repeat Postscript Postscript

2 PostScript PostScript (token) 437 == 437 == PostScript PostScript 437 == PostScript (operator) 437 == == ==

2 PostScript PostScript (token) 437 == 437 == PostScript PostScript 437 == PostScript (operator) 437 == == == PostScript version 1.03 2003 1 24 Copyright c 2000 2003 Daikoku Manabu 1 PostScript 1.1 PostScript PostScript PostScript (page description language) PostScript Adobe Systems Incorporated PostScript PostScript

More information

I ASCII ( ) NUL 16 DLE SP P p 1 SOH 17 DC1! 1 A Q a q STX 2 18 DC2 " 2 B R b

I ASCII ( ) NUL 16 DLE SP P p 1 SOH 17 DC1! 1 A Q a q STX 2 18 DC2  2 B R b I 4 003 4 30 1 ASCII ( ) 0 17 0 NUL 16 DLE SP 0 @ P 3 48 64 80 96 11 p 1 SOH 17 DC1! 1 A Q a 33 49 65 81 97 113 q STX 18 DC " B R b 34 50 66 8 98 114 r 3 ETX 19 DC3 # 3 C S c 35 51 67 83 99 115 s 4 EOT

More information

Bar-Code_GUIDE

Bar-Code_GUIDE JPN 1 2 1 1-1 1-2 2 2-1 2-2 2-3 1 2 3 4 5 6 7 8 9 10 11 1 2 3 4 5 6 7 8 9 10 11 12 13 1 2 3 4 5 6 7 8 9 10 11 ' K ' X 5 T 3 O 0 1 2 3 4 K : N 01 23 1 2 3 4 5 6 7 8 9 10

More information

バーコードプリントガイド

バーコードプリントガイド CR-HIT/HIW/MEO/MEQ/MER/MET JPN 1 2 1 1-1 1-2 2 2-1 2-2 2-3 1 2 3 4 5 6 7 8 9 10 11 1 2 3 4 5 6 7 8 9 10 11 12 13 1 2 3 4 5 6 7 8 9 10 11 ' K ' X 5 T 3 O 0 1 2 3 4 K : N 01

More information

¥ƥ­¥¹¥ȥ¨¥ǥ£¥¿¤λȤ¤˽

¥ƥ­¥¹¥ȥ¨¥ǥ£¥¿¤λȤ¤˽ : 2010 2 14 1 MS Word.doc (MS Word 2003 ).docx (MS Word 2007 ) Word Windows.txt MS Word Word Word Word Excel Word 1 Word Word Word MS Word MS Word MS Word Word Windows MS Word MS Word Word Windows.txt

More information

基礎情報処理 I (文字型)

基礎情報処理 I (文字型) プログラミング 1 ( 文字型 ) program character1; a,b,c: char; writeln('1 文字づつ3 文字入力してください :'); readln(a); readln(b); readln(c); write(a); write(b); write(c); writeln; a,b,c:char; a:='a'; b:='b'; c:='c'; write(a);

More information

コンピュータグラフィックス - 第4回 色彩の表現

コンピュータグラフィックス - 第4回 色彩の表現 .. 4 2013 10 9 ( ) 2013 10 9 1 / 22 3 3 3 ( ) 2013 10 9 2 / 22 380 nm 780 nm 1 nm = 10 9 m ( ) 2013 10 9 3 / 22 3 3 (S M L ) 3 3 3 ( ) 2013 10 9 4 / 22 加法混色 光の 3 原色を組み合わせることで 様々な色を表現できる 光を重ねて別の色を作ることを加法混色と呼ぶ

More information

II ( ) prog8-1.c s1542h017%./prog8-1 1 => 35 Hiroshi 2 => 23 Koji 3 => 67 Satoshi 4 => 87 Junko 5 => 64 Ichiro 6 => 89 Mari 7 => 73 D

II ( ) prog8-1.c s1542h017%./prog8-1 1 => 35 Hiroshi 2 => 23 Koji 3 => 67 Satoshi 4 => 87 Junko 5 => 64 Ichiro 6 => 89 Mari 7 => 73 D II 8 2003 11 12 1 6 ( ) prog8-1.c s1542h017%./prog8-1 1 => 35 Hiroshi 2 => 23 Koji 3 => 67 Satoshi 4 => 87 Junko 5 => 64 Ichiro 6 => 89 Mari 7 => 73 Daisuke 8 =>. 73 Daisuke 35 Hiroshi 64 Ichiro 87 Junko

More information

PPS40511.PDF

PPS40511.PDF IBM Infoprint 1000J IBM PAGES ( CODE128 / QR CODE / PDF417 ) Rev. 1.1 2004/06/17-1 - 1. (ESX40) 3 2. ESX42 7 Code128 8 13 PDF417 15 IBM Infoprint 1000J (IP1316J, IP1336J, IP1356J) IBM PAGES IBM PC CODE128,

More information

データロジックスキャニング株式会社

データロジックスキャニング株式会社 QuickScan L Bar Code Scanner 7-13-5 DK 2 QuickScanL ...5...5 RS232...5...6 USB...6...7 LED...7...8...8...8...9...9...10...10 ID... 11 Prefix/Suffix... 11 Global Prefix/Suffix...12 RS-232...13...13...14...14...14...15...15...16...17

More information

10

10 2: http://www7.bpe.es.osaka-u.ac.jp/~kota/classes/jse.html kota@fbs.osaka-u.ac.jp 10 : 0 1 2 n 2 n 0 1 1 0 1 0 0 1 (2) = 105 1 = 8 1 2 8 = 256 0 9 105 i 106 j 256 2 1 #include int main(void)

More information

H02_ROM_ indd

H02_ROM_ indd ESC/P ESC/P IBM 5557-H02 ESC/P ESC/P IBM 5557-H02 ESC/P VP5074 IBM 5579/5577/5573 ESC/P ESC/P ESC/P ESC/P IBM 5557-H02 ESC/P ESC/P ESC/P / CD ESC/P ESC/P 289 IBM 5557-H02 / ESC R ESC t ESC X ESC / ESC

More information

untitled

untitled 2004845 PKIUTF8String Part1: UTF8String UTF8String PKI UTF8String UTF8String 2 (1) ( ) A, ü, [ ] [ ] ASCII JIS X2013 Unicode(ISO 10646) ( )( ) Unicode A U+0041 U+007F 3 (2) u ü ( )( ) ( )(

More information

PR300 電力モニタ 通信インタフェース (RS-485通信,Ethernet通信)

PR300 電力モニタ 通信インタフェース (RS-485通信,Ethernet通信) User s Manual 1 2 3 1 2 3 Ethernet 1 2 3 4 Ethernet (ST-NO) (PCLK1) (PCLK2) (COMM) (M ASC) (M RTU) (M TCP) (RS-485) (B-RT) (PR201) (NONE) (PRI) (EVEN) (ODD) (STP) (DLN) (RS-485) (Ethernet) (IP-1)

More information

gs-cjk project gs: Ghostscript PostScript/PDF AFPL Ghostscript GNU Ghostscript c: Chinese j: Japanese k: Korean gs-cjk: A

gs-cjk project gs: Ghostscript PostScript/PDF AFPL Ghostscript GNU Ghostscript c: Chinese j: Japanese k: Korean gs-cjk:  A A Guide to gs-cjk Project taiji@aihara.co.jp A Guide to gs-cjk Project p.1/63 gs-cjk project gs: Ghostscript PostScript/PDF AFPL Ghostscript GNU Ghostscript c: Chinese j: Japanese k: Korean gs-cjk: http://www.gyve.org/gs-cjk/

More information

DS-3300 プログラミングマニュアル 設定項目 ページ 初期値設定マップ 1-2 ファームウェアバージョン情報 2 システム設定 3 読取機能設定 4 インターフェース設定 5 バーコード規格別読取設定 6-7 チェックデジット設定 8 読取桁数設定 9 キャラクタ付加設定 10 数字バーコード

DS-3300 プログラミングマニュアル 設定項目 ページ 初期値設定マップ 1-2 ファームウェアバージョン情報 2 システム設定 3 読取機能設定 4 インターフェース設定 5 バーコード規格別読取設定 6-7 チェックデジット設定 8 読取桁数設定 9 キャラクタ付加設定 10 数字バーコード DS-3300 プログラミングマニュアル 設定項目 ページ 初期値設定マップ 1-2 ファームウェアバージョン情報 2 システム設定 3 読取機能設定 4 インターフェース設定 5 バーコード規格別読取設定 6-7 チェックデジット設定 8 読取桁数設定 9 キャラクタ付加設定 10 数字バーコード 11 シンボルテーブル 12 アスキーテーブル 13 ファンクションキーテーブル 14 フルアスキーテーブル

More information

A-GAGE High - Resolution MINI ARRAY Instruction Manual Printed in Japan J20005M

A-GAGE High - Resolution MINI ARRAY Instruction Manual     Printed in Japan J20005M A-GAGE High - Resolution MINI ARRAY Instruction Manual E-mail : mail@bannerengineering.co.jp http://www.bannerengineering.com Printed in Japan J20005M4 page 2 page 3 page 4 page 5 page 6 page 7 page 8

More information

MS240 JISⅡ半角カナ文字データを含むカード読み取り設定例

MS240 JISⅡ半角カナ文字データを含むカード読み取り設定例 MS240 磁気ストライプストライプカードリーカードリーダ JISⅡ 半角カナカナ文字文字データデータを含むカードカード読み取り設定例 ユニテック ジャパン株式会社 Ver1.0 目次 1. JIS-II 半角カタカナをデータに含む磁気カードについて...3 1.1. JIS-II カード規格とは...3 1.2. 半角カタカナデータを含む JIS-II コードの仕組み...3 1.3 半角カタカナデータを含む

More information

4 Mule(Emacs)

4 Mule(Emacs) 文字コードとは 文字コードとコード系 character code コンピュータ内部での表現の際あるいはコンピュータ間の通信の際には 文字や記号はある一定のビットパターン (bit pattern, 0,1の列 ) で表されている このような 文字とビットパターンの対応を文字コードという 広く使われている文字コードと文字コード系 ( 文字コードをどのように使うかも含めて規定したコード体系のこと )

More information

EPSON PS Tools HTMLヘルプ <Macintosh版>

EPSON PS Tools HTMLヘルプ <Macintosh版> Rev. LP-9800CPL EPSON PS Tools NPD0892 00 EPSON PS Tools... 1... 1 EPSON PS Tools... 2 EPSON PS Tools... 4... 4... 6... 7... 9... 11... 12 EPSON PS Tools EPSON PS Tools PS EPS PDF TIFF JPEG Macintosh OS

More information

専門基礎11(情報の表現)

専門基礎11(情報の表現) 専門基礎 Ⅰ 第 11 回 情報の表現 数値を 0 と 1 で表現するには? ( A ) とは 整数と実数の表現 0 とそれに 1 ずつ加えていって得られる自然数 (1, 2, 3, 4, ) および 1 ずつ引いていって得られる数 ( 1, 2, 3, 4, ) の総称である マイナスを含む自然数 ( B ) とは 分数で表せる数も表せない数も全て 小数点で表せられる 存在しうるすべての数 それらの数値を

More information

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID 10 10 10.1 1. 2. 3. HTML(HyperText Markup Language) Web [ ][ ] HTML Web HTML HTML Web HTML ~b08a001/www/ ( ) ~b08a001/www-local/ ( ) html ( ) 10.2 WWW WWW-local b08a001 ~b08a001/www/ ~b08a001/www-local/

More information

Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2

Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 September 2016 1 Windows Cygwin Mac *1 Emacs Ruby 1 1.1 ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 ~/16:00:20> ls 2 2 ls ls -a ~/16:00:20> ls -a

More information

Microsoft Word - 5J0080_EAN-128MenuBook_v023.doc

Microsoft Word - 5J0080_EAN-128MenuBook_v023.doc 目 次 1. はじめに 2 2.UCC/EAN-128 概要 2 3. 仕様概要 3 4. 設定方法 6 5. オプション設定 12 6. 出力モード 1 用アプリケーション識別子メニュー 14 7. 直接入力 23 本書の内容につきましては 万全を期して作成いたしましたが 万一ご不審の点やお気づきの点がございましたら 弊社営業部までご連絡ください 本書の一部または全部を無断で複製することは禁止されております

More information

131 71 7 1 71 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 71 7 1 71 7 1 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 7 1 71 7 1 71

More information

6 Tgif William Chia-Wei Chang tgif 3.0 pixmap URL Tgif 6.1: Tgif

6 Tgif William Chia-Wei Chang tgif 3.0 pixmap URL Tgif 6.1: Tgif 6 Tgif 121 6.1 Tgif............................ 122 6.2..................... 123 6.2.1...................... 126 6.2.2 Dash, Type, Style, Width.......... 127 6.2.3 Pen, Fill............. 128 6.2.4 Text......................

More information

WelcomeToPS_Finish

WelcomeToPS_Finish Welcome to Adobe's Printing Solution! 2 Windows 95 1999 6 18 Adobe Systems Incorporated http://www.adobe.co.jp/print http://www.adobe.com/print 3 Adobe PostScript PostScript1984 Adobe Systems Incorporated

More information

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML Web 工学博士大堀隆文 博士 ( 工学 ) 木下正博 共著 World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML ii HTML CSS CSS HTML HTML HTML HTML Eclipse Eclipse Eclipse

More information

第一章 系统讯息

第一章 系统讯息 KC-3200ZB Wireless Linear Imager Scanner プログラミング設定マニュアル - 1 - Chapter 1 システム情報 目次 1.1 このマニュアルについて 3 1.2 セットアップ方法について 4 1.3 ペアリング設定方法 5 1.4 スキャナー LED の説明 6 1.5 バッテリ充電について 6 1.6 ビープ音の設定 6 1.7 周波数の設定 7 1.8

More information

johokiso-graphics

johokiso-graphics 1 2 (pixe) (Picture Eement) (dot) http://kayoo.org/home/mext/joho- kiki/ 3 4 (Jaggy) : = NTSC ( TV) 4:3 ( ) 16:9 iphone6 ipad2 Air 1334x750 (326dpi) 2048x1536 (264dpi) VGA 640 480 4:3 SVGA 800 600 4:3

More information

EPSON GT-9700F ユーザーズガイド

EPSON GT-9700F ユーザーズガイド EPSON TWAIN 35mm 35mm 120 / 220 4 x 5 EPSON TWAIN 1 2 Windows... 90 Macintosh... 91 TWAIN Windows 98 / Me Windows 2000 Macintosh EPSON TWAIN 3 Photoshop... 149 EPSON SMART PANEL Windows Macintosh EPSON

More information

データフォーマットの設定例 Ver.F

データフォーマットの設定例 Ver.F 資料データフォーマットの設定例 株式会社エイポック www.a-poc.co.jp 目次はじめに 第 1 章本書の見方と設定方法 第 2 章データフォーマットの設定例 例 1 データの途中から出力する( データの先頭を削除する ) 例 2 データの後方から削除する 例 3 データの途中までを出力する 例 4 データの中間を出力する 例 5 データの中間にキャラクタやキーを挿入する 例 6 指定した文字を無効にして(

More information

Adobe Postscript 3 Expansion Unit

Adobe Postscript 3 Expansion Unit 3 ... 4... 4... 4... 4... 4 OS... 4 PDF... 5... 6... 6... 6... 6... 6... 7... 7... 8... 18... 18... 18 PDF... 18 PS... 18... 18 /... 18... 18... 18... 18... 19... 19 PS... 19... 19... 19 Q&A... 19... 19...

More information

r7.dvi

r7.dvi 11 5 Web 2011.6.21 1 1.1 1? 50 1 ( ) 92.2 cm 1: 1? 1 ( ) ( 1) 1 / ( ) 1.2 AD DA AD ( = ) (?) DA ( = ) AD/DA 16 165mm! 2: 165mm 164.5mm 165.5mm 0.1mm? 0.01mm? AD ( 2) 3 2 11010... 3: AD DA DA 3 ( ) 2 2.1

More information

型番 USB :F830-U RS232C:F830-R 組込み式 2 次元コードリーダー F830 詳細設定マニュアル Ver1.0 1

型番 USB :F830-U RS232C:F830-R 組込み式 2 次元コードリーダー F830 詳細設定マニュアル Ver1.0 1 型番 USB :F830-U RS232C:F830-R 組込み式 2 次元コードリーダー F830 詳細設定マニュアル Ver1.0 1 改定履歴 Ver 発行日改定履歴 1.0 2019/05/14 初版発行 FW:D_HEM_V1.69_Tjp_H03_D4_CG8_LLJ1_BL14_M0A 2 目次 1. 同梱品とトリガーボタンの説明... 5 1.1 同梱品... 5 1.2 トリガーボタン...

More information

2004 TV Indexing Index Auto-Making Soccer Video Digests :2005 2 2 3603U043-0 Katsunori Kawaguchi 1 7 1.1.................................... 7 1.2.................................. 7 1.3..................................

More information

ch31.dvi

ch31.dvi 1 1 1.1 1.1.1 ( ) ( 1.1 ): [ ] [ ] CPU[ + ] [ ] CPU( ) ( 1 2 1 1.1: ( 1.1 ): ( ) [ ] ( )[ ] + ( ) (+ ) ( ) ( ) 1.1. 3 1.2: ( ) ( ) ( 1.2) 4 1 1.3: 120m/ (432km/h) 0.5 2m/ 1 ( 1 ) ( ) ( ) ( 1.3) 1.1. 5

More information

ように記述をします div1 要素 span 要素 2 個 div3 要素 span 要素 4 個 div5 要素 span 要素 1 個 div7 要素 span 要素 2 個 div2 要素 span 要素 1 個 div4 要素 span 要素 2 個 div6 要素 span 要素 2 個

ように記述をします div1 要素 span 要素 2 個 div3 要素 span 要素 4 個 div5 要素 span 要素 1 個 div7 要素 span 要素 2 個 div2 要素 span 要素 1 個 div4 要素 span 要素 2 個 div6 要素 span 要素 2 個 1238-2 円形グラデーションのトランジション ラディアルグラデーションのトランジション W3C 仕様では background-image プロパティは transition プロパティでのトランジションや後で アニメーション編 に出てくる animation プロパティでのアニメーションができないようになっています ラディアルグラデーションの radial-gradient( ) 関数と repeating-radial-gradient(

More information

untitled

untitled Web HTML(Hyper-Text Markup Language) Web HTML () Web / Web -1 Web -2 Web -3 Web -4 Web Web -5 White Black Red Green Blue Yellow Purple Aqua Maroon Navy Olive Teal Gray Silver Lime Fuchsia Snow Linen Bisque

More information

Garment Creator

Garment Creator Garment Creator ... 5... 5... 5 PDF... 5... 6... 7... 9... 9... 9... 9... 9... 11 T... 12 T... 12 T... 13... 13... 13... 16... 17... 17 USB... 17 USB... 17 /... 18... 19... 19... 19... 20... 21... 21...

More information

EPSON GT-7200/8200U ユーザーズガイド

EPSON GT-7200/8200U ユーザーズガイド GT-7200U_8200U GT-7200U_8200UUG 1.10 EPSON TWAIN GT-7200U GT-8200UF GT-8200U 35mm GT-7200U GT72FLU GT-8200UF GT-8200U GT70FLU2 35mm GT-7200U GT72FLU GT-8200UF GT-8200U GT70FLU2 120 / 220 1 GT-7200U_8200U

More information

5 LATEX 2ε 2010

5 LATEX 2ε 2010 2010-11-27 15:30 16:00 TEX 5 LATEX 2ε 2010 1986 Lisp-Stat 1996 ptex 1987 ASCII TEX 1990 ptex 1993 JIS X 4051 1994 ptex JIS 1995 ptex 3.0 platex 2ε 2000 jsarticle 2008 ε-ptex e-ptex 2010 TEX Live 2010

More information

Barcode Setup Manual

Barcode Setup Manual 2016/04/Ver 1.2 目 次 セットアップ フローチャート... 4 PS800Z 初 期 設 定... 5 Part I システム 情 報... 6 ファームウェアバージョン... 6 Part II キーボードウェッジパラメーター... 7 2.1 ターミナルタイプ... 7 2.2 言 語 選 択... 7 2.3 ファンクションキー エミュレーション... 8 2.4 ALT モード...

More information

G-XML

G-XML G-XML PreSerV for WebG-XML G-XML i 1... 3 1.1 G-XML... 3 1.2... 3 1.3... 4 1.4... 5 2 G-XML... 6 2.1... 6 2.2... 8 2.2.1... 9 2.2.2...13 2.2.3...14 2.2.4...16 2.2.5...16 2.3...17 2.3.2...17 2.3.3...17

More information

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4..

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4.. WWW 17 2 10 1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4................................. 8 4.5...........................

More information

2 n ImageJ (intensity) ImageJ Bit

2 n ImageJ (intensity) ImageJ Bit : western blot Photoshop () () NIH (National Institute of Health) Image JWindowsMac ( ) () Image J 2017.5.13 1 2 n ImageJ (intensity) ImageJ 0 0 0 0 26 26 26 26 234 234 232 238 255 255 245 131 0255 256

More information

(Visual Secret Sharing Scheme) VSSS VSSS 3 i

(Visual Secret Sharing Scheme) VSSS VSSS 3 i 13 A Visual Secret Sharing Scheme for Continuous Color Images 10066 14 8 (Visual Secret Sharing Scheme) VSSS VSSS 3 i Abstract A Visual Secret Sharing Scheme for Continuous Color Images Tomoe Ogawa The

More information

EPSON PX-V500 プリンタ操作ガイド

EPSON PX-V500 プリンタ操作ガイド A4 L... 6... 6... 7... 7... 8 EPSON PhotoQuicker... 8... 8... 14 1... 14 2... 15... 16... 16... 17... 17... 19... 19 A4 L... 23... 23... 24... 24... 25... 25... 29... 29... 29... 31... 31... 35... 35...

More information

QuickScan L Bar Code Scanner スキャナ設定ガイド

QuickScan L Bar Code Scanner スキャナ設定ガイド QuickScan L Bar Code Scanner スキャナ設定ガイド ご注意 本書の内容の全部または一部を無断で複製 配布することを禁じます 本書の内容は予告なしに変更する場合がありますのでご了承下さい 本書の内容には万全を期していますが内容を保証するものではありません ご不審な点や誤り記載漏れなどお気付きのことがありましたら ご購入された販売店もしくはデータロジックスキャニングまでお問合せ下さい

More information

4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html <meta ht tp - equiv="content-type" content=" tex t /html; charset=utf-

4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html <meta ht tp - equiv=content-type content= tex t /html; charset=utf- 4.html css html css Adobe Flash JavaScript xml Ajax html css 045 11 12 4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html

More information

TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date URL Right Type Conference Paper

TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date URL   Right Type Conference Paper TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date 2003-03-10 URL http://hdl.handle.net/2433/218368 Right Type Conference Paper Textversion author Kyoto University Web 1 4 7 23 [1]

More information

Barcode Setup Manual

Barcode Setup Manual PS800ZR Version : 1.2 2018/07/23 1 目次 セットアップフローチャート... 3 Part I システム情報... 4 1.1 ファームウェアバージョン... 4 Part II キーボード設定... 5 2.1 言語選択... 5 2.2 文字間ディレイ時間... 5 2.3 データ転送前ディレイ時間... 6 2.4 付加文字... 6 Part III システム設定...

More information

EPSON PM-G700プリンタ操作ガイド

EPSON PM-G700プリンタ操作ガイド A4 L... 7... 7... 8... 9... 11 EPSON PhotoQuicker... 11 for EPSON... 11... 12... 15 1... 15 2... 16 CD DVD CD DVD...17 CD DVD... 17... 17... 20 CD DVD... 21 CD DVD... 21... 21... 22... 22... 23... 24...

More information

PM-A850 スキャナ操作ガイド(Windows編)

PM-A850 スキャナ操作ガイド(Windows編) PM-A850 PM-A850 Windows... 5... 8... 8... 9 35mm... 11 35mm... 14 EPSON Scan...17 EPSON Scan... 17 TWAIN... 18... 21... 23... 23... 23... 25... 27 EPSON Scan... 27 TWAIN... 28... 30... 32... 32... 33...

More information

Adobe Postscript 3 Expansion Unit

Adobe Postscript 3 Expansion Unit ... 4... 31... 32... 4... 4... 4... 4 OS... 4 PDF... 5... 6... 6... 6... 6... 6... 7... 7... 8 Windows... 8 PS... 8 PS Folder... 8 Mac OS X... 9... 9 PS Folder... 9 PS... 10 Windows... 10 Mac OS X... 11

More information

1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons.

1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons. 1 PC PC 1 PC PC 1 PC PC PC PC 1 1 1 1.1 PC PC PC PC PC workstation PC 1.1.1 hardsoft 1.1.2 PC PC 1.1 1 1. 2. 3. CPU 1 Gustavb, Wikimedia Commons.http://en.wikipedia.org/wiki/Image:Personal_computer,_exploded_5.svg

More information

1.1 EPS... 3 1.2 EPS... 3 1.2.1... 3 1.2.2... 4 1.3... 5 2.1 BMP... 6 2.2 BMP... 6 2.2.1... 6 2.2.2... 6 2.2.3 (Appendix )... 7 3.1 TIFF... 8 3.2 TIFF... 8 3.2.1... 8 3.2.2... 9 3.2.3 (Appendix )... 9

More information

コマンドリファレンスREV14.PDF

コマンドリファレンスREV14.PDF PD22 REV1.4 2002.3.26 REV 1.0 2001.10.01. 1.1 2001.10.15 1.2 2001.10.22 1.3 2001.11.01 1.4 2002.3.26 code128-1 - - 2 - - 3 - / / 4 / - 4-2 2 2 1 2 1 b - 5 - - 6 - , - 7 - 15 1 10-8 - 256 256 0 0 2-9 -

More information

2 TEX, TEX Donald Knuth 2 3 ( ) TEX ( ) , WWW 4 TEX (.tex,.dvi,.ps,.pdf ) 3 TEX ( ) ( ) 5 (.tex Windows, Mac, Unix, MS-DOS TEX TEX ( ) & METAFON

2 TEX, TEX Donald Knuth 2 3 ( ) TEX ( )  , WWW 4 TEX (.tex,.dvi,.ps,.pdf ) 3 TEX ( ) ( ) 5 (.tex Windows, Mac, Unix, MS-DOS TEX TEX ( ) & METAFON II 8 (1) TEX 2002 6 13 DTP TEX PDF 1 UNIX TEX TEX.cshrc 1.cshrc set path=(/usr/meiji/pub/lib/tetex/bin $path) TEX http://www.isc.meiji.ac.jp/~ae00050/ ( WWW myreport.tex (dvi ) isc-xas06% platex myreport.tex

More information

ohp1.dvi

ohp1.dvi 2008 1 2008.10.10 1 ( 2 ) ( ) ( ) 1 2 1.5 3 2 ( ) 50:50 Ruby ( ) Ruby http://www.ruby-lang.org/ja/ Windows Windows 3 Web Web http://lecture.ecc.u-tokyo.ac.jp/~kuno/is08/ / ( / ) / @@@ ( 3 ) @@@ :!! ( )

More information

PM-A850 プリンタ操作ガイド(Windows編)

PM-A850 プリンタ操作ガイド(Windows編) PM-A850 Windows A4 L... 6... 6... 7... 8... 10 EPSON PhotoQuicker... 10 for EPSON... 10... 11... 14 1... 14 2... 15... 16... 16... 17... 18... 20... 20 A4 L... 22... 22... 23... 24... 26... 26... 28...

More information

101NEO資料

101NEO資料 Version 1.5 Tutorial PDF ... 1. PDF... 2 -.... 2 -. PDF... 2 -.... 4 -. HTML... 4 -. PDF... 5 -.... 7 -.... 8 Tutorial PDF Tutorial PDF - Page 1 Tutorial PDF - Page 2 Tutorial PDF - Page 3 Tutorial PDF

More information

文字コードとその実装

文字コードとその実装 1 2001 11 3 1 2 2 2 2.1 ISO/IEC 646 IRV US-ASCII................................. 2 2.2 ISO/IEC 8859 JIS X 0201..................................... 4 2.3 ISO/IEC 2022............................... 6

More information

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~ alse

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I  Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~alse I Exercise on Programming I http://bit.ly/oitprog1 1, 2 of 14 ( RD S ) I 1, 2 of 14 1 / 44 Ruby Ruby ( RD S ) I 1, 2 of 14 2 / 44 7 5 9 2 9 3 3 2 6 5 1 3 2 5 6 4 7 8 4 5 2 7 9 6 4 7 1 3 ( RD S ) I 1, 2

More information

掲示用ヒート表 第34回 藤沢市長杯 2017

掲示用ヒート表 第34回 藤沢市長杯 2017 34 8 4 2 Round 1 Round 2 SEMI FINAL 30 16 8 H1 H5 H1 H1 Red 12401821 2 Red 12601360 2 1-1 Red 12501915 1 1-1 Red 12501915 4 White 12900051 4 White 12600138 3 3-1 White 12802412 2 3-1 White 12801091 1 Yellow

More information

Z D

Z D SCN02-Z2D ハンディスキャナー プログラミングマニュアル 1 目次 ユーザー設定... 3 システム設定... 3 ビープ音設定... 3 カスタム設定... 5 インターフェース切り替え... 5 照準パターン... 6 スキャンモード... 7 同一コード読み取り間隔... 7 パラメータ設定... 8 キーボード設定... 9 シンボル設定... 12 Codabar(NW-7) 設定...

More information

EPSON PX-500 プリンタ操作ガイド

EPSON PX-500 プリンタ操作ガイド A4 L... 6... 6... 7... 7... 8 EPSON PhotoQuicker... 8... 8... 12 1... 12 2... 13... 14... 14... 15... 15... 17... 17 A4 L... 19... 19... 20... 20... 21... 21... 23... 23... 23... 25... 25... 27... 27...

More information

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 1 6 (1) (2) HTML (3) PDF Copy&Paste 1 Web 1 Web Web 1 Web HTML 6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 3 1.1 HTML Web HTML(Hyper Text Markup Language)

More information

Jlspec

Jlspec 1OFF 通常 OFF 通常 2 ON 設定内容の初期化を行う ( 工場出荷状態 ) OFF 通常 3 ON 自己診断 / 設定内容の印字を行う 4OFF 通常 %!PS-Adobe-2.0 /Courier findfont 10 scalefont setfont /LEFT 36 def /TOP 792 def /PITCH 12 def /LF {show /x LEFT def /y

More information

tottori2013-print.key

tottori2013-print.key 1 / 152 3 / 152 2 / 152 4 / 152 5 / 152 7 / 152 6 / 152 8 / 152 9 / 152 11 / 152 Red: [R,G,B] = [255,0,0] Yellow [R,G,B] = [255, 255, 0] Magenta [R,G,B] = [255, 0, 255] W [R,G,B] = [ Green: [R,G,B] = [0,

More information

Epson Edge Print

Epson Edge Print ... 6... 6... 6 PDF... 6... 7 EMX... 17... 17 EMX... 17... 18... 19... 20... 9... 9... 10... 10... 11... 11... 11... 13... 13... 13... 14... 14 &... 15... 15... 21... 21... 21... 22... 22... 22... 23...

More information

H02_ROM_ indd

H02_ROM_ indd CD E CD 16 1 Nul 00 2 Bel 07 3 BS 08 4 HT 09 5 LF 0A 6 VT 0B 7 FF 0C 8 CR 0D 9 1 DC1 11 10 3 DC3 13 11 CAN 18 12 SP 20 13 ESC 1 n 1 n 2 1B 25 31 n 1 n 2 14 ESC 2 n 1 n 2 1B 25 32 n 1 n 2 15 ESC 3 n 1 n

More information

2 2.3.1................................. 15 2.3.2............................... 15 2.3.3................................. 15 2.3.4...................

2 2.3.1................................. 15 2.3.2............................... 15 2.3.3................................. 15 2.3.4................... PostScript 2008 7 17 Copyright c 2000 2008 Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License. 1 PostScript 5 1.1 PostScript..................................

More information

データロジックスキャニング株式会社

データロジックスキャニング株式会社 Magellan1100i 1D / 2D スキャナ設定ガイド REV.L 2016 年 3 月 IDEC AUTO-ID SOLUTIONS 株式会社本社 661-0967 兵庫県尼崎市潮江 5 丁目 8 番 10 号 TEL:06-7711-8880 FAX:06-6398-3202 東京支店 108-6014 東京都港区港南 2 丁目 15 番 1 号 TEL:03-5715-2177 FAX:03-5715-2178

More information

Microsoft Word - SP605取扱説明書1_0a.doc

Microsoft Word - SP605取扱説明書1_0a.doc 1.0a 版 対 応 機 種 型 番 : SP605KB (PS/2 キーボードウェッジ) SP605USB (USB キーボード) はじめに このたびはペンスキャナ SP605 シリーズをお 買 い 上 げいただき 誠 にありがとうござい ます 本 取 扱 説 明 書 には SP605 シリーズの 外 部 機 器 との 接 続 方 法 および 内 部 パラメータの 設 定 方 法 について 記 載

More information

r1.dvi

r1.dvi Ruby 2009.9.7 1 ( ) --- ( ( ) ( ) 1 --- ( ) 1 ( ) (?) IT 7K( )?? ( ) ( )? IT ( ) --- ( ) 1 ( ) --- ( ) (?) 2-3% Top-Level ICT Professional 5% ICT Professional 10% 100% 50% 20% Devl. Experiment Adv. ICT

More information

untitled

untitled 25 10 12 11 24 (1) 14 (2) 26 10 44 (3) (4) (5) 27 10 68 (6) (7) (8) 25 10 ( ) (1) (2) (3) ) city.yokohama.lg.jp city.yokohama.jp WEB WEB WEB WEB WEB WEB 1 25 10 WEB WEB (1) (2) (3) (4) 25 10 (1) WEB (2)

More information

Q&A集

Q&A集 MapViewer & ver.2 EWEB-3C-N055 PreSerV for Web MapViewer & i 1... 1 1.1... 1 1.2... 2 1.3... 3 1.4... 4 1.5... 5 1.6... 6 1.7... 7 1.8... 8 1.9... 9 1.10...11 1.11...12 1.12...13 1.13...14 1.14...15 1.15...16

More information

kbd_reference.ps

kbd_reference.ps Windows Windows 45 IBM Windows 5.8 ( : 5639-I70) URL http://www.ibm.com/jp/manuals/main/mail.html IBM http://www.ibm.com/jp/manuals/ (URL ) Personal Communications for Windows Keyboard Layout and Mapping

More information

EPSON GT-9800F ユーザーズガイド 

EPSON GT-9800F ユーザーズガイド  ... 7... 8... 9... 10... 10... 10... 11... 11... 12 35mm... 13 35mm... 16 120 / 220... 19 4 5... 22 EPSON Scan...25 EPSON Scan... 25 TWAIN... 26 EPSON SMART PANEL... 27... 29... 29... 29... 29... 29...

More information

title_PoD

title_PoD ADOBE PHOTOSHOP ELEMENTS 1 Photoshop Elements 13 Photomerge Compose elive Facebook Retina Adobe Camera Raw 8.6 : Photomerge Compose Photomerge Compose 2 Photomerge Compose Photomerge Compose Photoshop

More information

★結果★ 藤沢市長杯 掲示用ヒート表

★結果★ 藤沢市長杯 掲示用ヒート表 AA 35 Round 1 8 4 Round 2 28 16 SEMI FINAL H1 H5 H1 H1 Red 12802015 1 Red 12802109 1 1-1 Red 12802015 2 1-1 Red 12702346 White 12800232 2 White 12702406 3 3-1 White 12702346 1 3-1 White 12802109 Yellow

More information

Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2

Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2 Adobe InDesign InDesign PDF Flash Web CD DVD Adobe Campus Day Adobe Campus Day Adobe Campus Day 1 Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2 InDesign InDesign... Web............ 3 POINT InDesign

More information

MYWORDⅤ Pro 操作マニュアル

MYWORDⅤ Pro 操作マニュアル This software is a human word proccessor for the blind,the lowvision and general people. new AOK system MYWORD MYWORD Windows XP Windows DOS/V NEC PC-9821 DOS/V NEC PC-9821 DOS/V Esc ESC Tab TAB Ctrl CTRL

More information

コンパイラ

コンパイラ 1 ソフトウェアアークテクチャ 第 8 回ネットワークシステム 環境情報学部 萩野達也 スライド URL https://vu5.sfc.keio.ac.jp/sa/login.php 2 ソフトウェア 基本ソフトウェア オペレーティングシステム 単体で動作するソフトウェア シェル コンパイラ インタープリタ ネットワークを利用するソフトウェア WEB 電子メール チャット IP 電話 3 分散システム

More information

2 BASIC DATA DATA DATA DATA Data BASIC tbasic 1 File OS OS *2 (0, 1) OS 0,1 0,1 *2 USB OS

2 BASIC DATA DATA DATA DATA Data BASIC tbasic 1 File OS OS *2 (0, 1) OS 0,1 0,1 *2 USB OS Tiny Basic for Windows tbasic.org * 1 [2014 8 ] Tiny Basic for Windows 1 2 1.1............................... 3 1.2....................................... 5 1.3........................................

More information

1 1 1.................... 1 2...................... 2 3................... 3 2 5 1.............................. 5 2........................ 6 3.................... 9 3 11 1...........................

More information

Essential Guide for Graphic Users

Essential Guide for Graphic Users Essential Guide for Graphic Users 2 Adobe Illustrator CS2 Illustrator CS2 Web 3D OpenType PDF/X-1 PDF Essential Guide for Graphic Usersplaying with carps and flowers PDF/X ISOPDF PDF/X PDF ISO PDF/X PDF/X-1a

More information

橡J_ptvr_common.PDF

橡J_ptvr_common.PDF PARTNER VR/MIPS Copyright (C) 1999 / ( ) PARTNER http://www.midas.co.jp/products/download/program/partner.htm PARTNER( ) PARTNER 1 MS-Windows Windows MS MS-DOS CPU Y / M / D Rev 1998.07.15 1.00 1999.05.14

More information

08+11Extra

08+11Extra A - - #8 bit, Byte, Yutaka Yasuda bit : データの最小単位 1bit = 最小状態の単位 = 二進一桁 コンピュータ内部は電気配線 配線に電気が通っている いな い だけで処理 状態は2種 二値 二進 動作にうまく対応 二進一桁を配線一本で実現 0と1 二進数 で動作 の実体 1bit = 二進一桁 = 配線一本 Byte : Byte bit 8 1 Byte

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web HTML 1 Web 1 Web Web 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML XHTML(XHTML 1.0 Transitional)

More information

BIT -2-

BIT -2- 2004.3.31 10 11 12-1- BIT -2- -3-256 258 932 524 585 -4- -5- A B A B AB A B A B C AB A B AB AB AB AB -6- -7- A B -8- -9- -10- mm -11- fax -12- -13- -14- -15- s58.10.1 1255 4.2 30.10-16- -17- -18- -19-6.12.10

More information

EPSON GT-7400U ユーザーズガイド

EPSON GT-7400U ユーザーズガイド GT-7400U NPD0462 v1.00 win... 6... 7 EPSON Scan... 9 EPSON Scan... 9 TWAIN... 10... 12... 14... 14... 14... 14... 14... 14... 16... 16... 16... 17... 18... 20... 20... 20... 21... 21... 22 EPSON Scan...

More information

ORCA (Online Research Control system Architecture)

ORCA (Online Research Control system Architecture) ORCA (Online Research Control system Architecture) ORCA Editor Ver.1.2 1 9 10 ORCA EDITOR 10 10 10 Java 10 11 ORCA Editor Setup 11 ORCA Editor 12 15 15 ORCA EDITOR 16 16 16 16 17 17 ORCA EDITOR 18 ORCA

More information

1 1 1...................... 1 2 6 1.................. 6 2...................... 8 3 9 1........................ 9 2........................ 12 4 15 1...... 15 2........................... 18 3..........................

More information

EPSON GT-9800F ユーザーズガイド

EPSON GT-9800F ユーザーズガイド ... 7... 8... 9... 10... 10... 10... 11... 11... 12 35mm... 13 35mm... 16 120 / 220... 19 4 5... 22 EPSON Scan...25 EPSON Scan... 25 TWAIN... 26 EPSON SMART PANEL... 27... 29... 29... 29... 29... 29...

More information

Welch Allyn Data Collection Inc., All rights reserved.

Welch Allyn Data Collection Inc., All rights reserved. IMAGETEA TM 3800 Hand Held Linear Imager 2000-2001 Welch Allyn Data Collection Inc., All rights reserved. http://www.handheld.com hhp@courante.msn.com 1 1 1 2 Disconnect 3 1 2 1 3 Keyboard Wedge Interface

More information

MovingTextsAnime1 の説明 HTML の記述 (MovingTextsAnime1.html) id 属性 stage の div 要素 ( アニメーションが動くステージ ) を作り その中にボックスやテキストを記述します id 属性 div1 のdiv 要素から id 属性 div

MovingTextsAnime1 の説明 HTML の記述 (MovingTextsAnime1.html) id 属性 stage の div 要素 ( アニメーションが動くステージ ) を作り その中にボックスやテキストを記述します id 属性 div1 のdiv 要素から id 属性 div 1334 テキストのアニメーション animation プロパティを使ってテキストに係わるプロパティのアニメーションを作ってみ ましょう ( 注 )Safari(webkit 系ブラウザ ) と Chrome(webkit にも対応 ) は テキストの輪郭や色を -webkit-text-stroke-width -webkit-text-stroke-color -webkit-text-fill-color

More information