write.t
来自「openmeetings专用版」· T 代码 · 共 26 行
T
26 行
#!/usr/bin/perl
#
# Test writing Radiance file format
#
# Currently supported tests are for formats that ImageMagick
# knows how to both read and write.
#
# Whenever a new test is added/removed, be sure to update the
# 1..n ouput.
BEGIN { $| = 1; $test=1; print "1..1\n"; }
END {print "not ok $test\n" unless $loaded;}
use Image::Magick;
$loaded=1;
require 't/subroutines.pl';
chdir 't/rad' || die 'Cd failed';
testReadWrite( 'RAD:input.rad',
'MIFF:output.rad',
q//,
'e56e5916bccea74f94b84fe69e26f2d5c378320d1a89684cf461abad11a56575');
1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?