PerformTest() 공개 정적인 메소드

public static PerformTest ( string file, string args, string suffix ) : void
file string
args string
suffix string
리턴 void
예제 #1
0
 public void TestSeparateToContigous(string file)
 {
     Tester.PerformTest(file, new string[] { "-p", "contig", "-c", "lzw" }, "_converted_contig_lzw");
 }
예제 #2
0
 public void Test_G3_1D(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "g3:1d" }, "_converted_g3_1d");
 }
예제 #3
0
 public void test_UnknownTags()
 {
     Tester.PerformTest("unknown-tags.tif",
                        new string[] { "-c", "lzw", "-p", "separate" },
                        "_converted_lzw_separate");
 }
예제 #4
0
 public void TestContigousToSeparate(string file)
 {
     Tester.PerformTest(file, new string[] { "-p", "separate", "-c", "lzw" }, "_converted_separate_lzw");
 }
예제 #5
0
 public void TestToNoEncoding(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "none", "-s" }, "_converted_strips");
 }
예제 #6
0
 public void test_penguin_separate_jpeg()
 {
     Tester.PerformTest("penguin_jpeg.tif",
                        new string[] { "-c", "none", "-p", "separate" },
                        "_converted_strips_separate");
 }
예제 #7
0
 public void TestStripsToTiles(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "none", "-t" }, "_converted_tiles_none");
 }
예제 #8
0
 public void Test_HP_2(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "zip:2" }, "_converted_deflate_2");
 }
예제 #9
0
파일: Jpeg.cs 프로젝트: xela-trawets/Tiff
 public void Test(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "jpeg" }, "_converted_jpeg");
 }
예제 #10
0
파일: Jpeg.cs 프로젝트: xela-trawets/Tiff
 public void TestRGB_50(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "jpeg:r:50" }, "_converted_jpeg_rgb_50");
 }
예제 #11
0
 public void Test_HP(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "lzw:2" }, "_converted_lzw_2");
 }
예제 #12
0
 public void Test_FP_3(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "lzw:3" }, "_converted_lzw_3");
 }
예제 #13
0
 public void Test_FP(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "zip:3" }, "_converted_deflate_3");
 }
예제 #14
0
 public void Test_G3_2D_Fill(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "g3:2d:fill" }, "_converted_g3_2d_fill");
 }
예제 #15
0
 public void TestTilesToStrips(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "none", "-s" }, "_converted_strips_none");
 }
예제 #16
0
 public void Test_G4(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "g4" }, "_converted_g4");
 }
예제 #17
0
 public void Test(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "packbits" }, "_converted_packbits");
 }