blob: 4e417c85d5b0141ea2f16f12eeb7c21037c9ea66 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# This file is a Tcl script to test out JPEG reading and writing.
# It is organized in the standard fashion for Tcl tests.
package require Tk
package require tcltest
tcltest::configure {*}$argv
source [file join [file dirname [info script]] constraints.tcl]
package require Img
imageInit
namespace eval ::jpeg::test {
namespace import ::tcltest::*
set fmt "jpeg"
set ext "jpg"
set file "testimgs/img.$ext"
set file2 "testimgs/img2.$ext"
# Encoded image content.
source $file.base64
source $file2.base64
test jpeg-1.1 {} -setup {
catch {image delete i}
} -body {
image create photo i -file $file
i data -format $fmt
} -cleanup {
image delete i
} -result $imgdata2
test jpeg-1.2 {} -setup {
catch {image delete i}
} -body {
image create photo i -data $imgdata
i data -format $fmt
} -cleanup {
image delete i
} -result $imgdata2
test jpeg-1.3 {} -setup {
catch {image delete i}
} -body {
image create photo i
i put $imgdata
i data -format $fmt
} -cleanup {
image delete i
} -result $imgdata2
test jpeg-1.4 {} -setup {
catch {image delete i}
} -body {
image create photo i
i put $imgdata -format $fmt
i data -format $fmt
} -cleanup {
image delete i
} -result $imgdata2
test jpeg-2.0 {Binary I/O with JPEG images} -setup {
catch {image delete i}
} -body {
image create photo i
set f [open $file r]
fconfigure $f -translation binary
set return [catch {i put [read $f]} msg]
close $f
lappend return $msg
} -cleanup {
image delete i
} -result {0 {}}
}
imageFinish
namespace delete ::jpeg::test
|