PerformTest() public static method

public static PerformTest ( string file, string args, string suffix ) : void
file string
args string
suffix string
return void
コード例 #1
0
ファイル: Misc.cs プロジェクト: xfischer/libtiff.net
 public void TestSeparateToContigous(string file)
 {
     Tester.PerformTest(file, new string[] { "-p", "contig", "-c", "lzw" }, "_converted_contig_lzw");
 }
コード例 #2
0
ファイル: CCITT.cs プロジェクト: xfischer/libtiff.net
 public void Test_G3_1D(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "g3:1d" }, "_converted_g3_1d");
 }
コード例 #3
0
ファイル: Misc.cs プロジェクト: xfischer/libtiff.net
 public void test_UnknownTags()
 {
     Tester.PerformTest("unknown-tags.tif",
                        new string[] { "-c", "lzw", "-p", "separate" },
                        "_converted_lzw_separate");
 }
コード例 #4
0
ファイル: Misc.cs プロジェクト: xfischer/libtiff.net
 public void TestContigousToSeparate(string file)
 {
     Tester.PerformTest(file, new string[] { "-p", "separate", "-c", "lzw" }, "_converted_separate_lzw");
 }
コード例 #5
0
ファイル: Misc.cs プロジェクト: xfischer/libtiff.net
 public void TestToNoEncoding(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "none", "-s" }, "_converted_strips");
 }
コード例 #6
0
ファイル: Misc.cs プロジェクト: xfischer/libtiff.net
 public void test_penguin_separate_jpeg()
 {
     Tester.PerformTest("penguin_jpeg.tif",
                        new string[] { "-c", "none", "-p", "separate" },
                        "_converted_strips_separate");
 }
コード例 #7
0
ファイル: Misc.cs プロジェクト: xfischer/libtiff.net
 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
ファイル: CCITT.cs プロジェクト: xfischer/libtiff.net
 public void Test_G3_2D_Fill(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "g3:2d:fill" }, "_converted_g3_2d_fill");
 }
コード例 #15
0
ファイル: Misc.cs プロジェクト: xfischer/libtiff.net
 public void TestTilesToStrips(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "none", "-s" }, "_converted_strips_none");
 }
コード例 #16
0
ファイル: CCITT.cs プロジェクト: xfischer/libtiff.net
 public void Test_G4(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "g4" }, "_converted_g4");
 }
コード例 #17
0
ファイル: Packbits.cs プロジェクト: xfischer/libtiff.net
 public void Test(string file)
 {
     Tester.PerformTest(file, new string[] { "-c", "packbits" }, "_converted_packbits");
 }