summaryrefslogtreecommitdiffstats
path: root/tkimg/tests/png.test
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-03-20 17:29:30 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-03-20 17:29:30 (GMT)
commitcfef685ad45bc8f98a2d59fba75ba9bc6e06496d (patch)
tree066005da150adf4bf7892796647154a49d5ea23c /tkimg/tests/png.test
parentc31bd7553b6efd2407fc521dc14aec1936e3cbf0 (diff)
downloadblt-cfef685ad45bc8f98a2d59fba75ba9bc6e06496d.zip
blt-cfef685ad45bc8f98a2d59fba75ba9bc6e06496d.tar.gz
blt-cfef685ad45bc8f98a2d59fba75ba9bc6e06496d.tar.bz2
upgrade tkimg 1.4.9
Diffstat (limited to 'tkimg/tests/png.test')
-rw-r--r--tkimg/tests/png.test75
1 files changed, 0 insertions, 75 deletions
diff --git a/tkimg/tests/png.test b/tkimg/tests/png.test
deleted file mode 100644
index a0d1610..0000000
--- a/tkimg/tests/png.test
+++ /dev/null
@@ -1,75 +0,0 @@
-# This file is a Tcl script to test out PNG reading and writing.
-# It is organized in the standard fasion 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 ::png::test {
- namespace import ::tcltest::*
-
- set fmt "png"
- set ext "png"
- set file "testimgs/img.$ext"
-
- # Encoded image content.
- source $file.base64
-
- test png-1.1 {} -setup {
- catch {image delete i}
- } -body {
- image create photo i -file $file
- i data -format $fmt
- } -cleanup {
- image delete i
- } -result $imgdata
-
- test png-1.2 {} -setup {
- catch {image delete i}
- } -body {
- image create photo i -data $imgdata
- i data -format $fmt
- } -cleanup {
- image delete i
- } -result $imgdata
-
- test png-1.3 {} -setup {
- } -body {
- image create photo i
- i put $imgdata
- i data -format $fmt
- } -cleanup {
- image delete i
- } -result $imgdata
-
- test png-1.4 {} -setup {
- } -body {
- image create photo i
- i put $imgdata -format $fmt
- i data -format $fmt
- } -cleanup {
- image delete i
- } -result $imgdata
-
-
- test png-2.0 {Binary I/O with PNG images} -setup {
- } -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 ::png::test