fixes System.Drawing tests
[mono.git] / mcs / class / System.Drawing / Test / System.Drawing.Imaging / TestJpegCodec.cs
1 //
2 // JpegCodec class testing unit
3 //
4 // Author:
5 //
6 //       Jordi Mas i Hernàndez (jordi@ximian.com)
7 //
8 // (C) 2004 Ximian, Inc.  http://www.ximian.com
9 //
10
11 //
12 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33 using System;
34 using System.Drawing;
35 using System.Drawing.Imaging;
36 using NUnit.Framework;
37 using System.IO;
38
39 namespace MonoTests.System.Drawing
40 {
41
42         [TestFixture]   
43         public class TestJpegCodec 
44         {
45                 
46                 [TearDown]
47                 public void Clean() {}
48                 
49                 [SetUp]
50                 public void GetReady()          
51                 {
52                 
53                 }
54                 
55                 /* Get suffix to add to the filename */
56                 internal string getOutSufix()
57                 {                       
58                         if (Environment.GetEnvironmentVariable("MSNet")==null)
59                                 return "-mono";
60                                         
61                         return "";
62                 }
63
64                 /* Get the input directory depending on the runtime*/
65                 internal string getInFile(string file)
66                 {                               
67                         string sRslt, local;                                            
68
69                         local = "../System.Drawing/" + file;
70                         
71                         sRslt = Path.GetFullPath (local);
72                                 
73                         if (File.Exists(sRslt)==false) 
74                                 sRslt = "Test/System.Drawing/" + file;                                                  
75                         
76                         return sRslt;
77                 }
78                 
79                 /* Checks bitmap features on a know 24-bits bitmap */
80                 //[Test]
81                 public void Bitmap24bitFeatures()
82                 {
83                         string sInFile = getInFile ("bitmaps/nature24bits.jpg");
84                         Bitmap  bmp = new Bitmap(sInFile);                                              
85                         RectangleF rect;
86                         GraphicsUnit unit = GraphicsUnit.World;
87                         
88                         rect = bmp.GetBounds(ref unit);
89
90                         Assert.AreEqual (PixelFormat.Format24bppRgb, bmp.PixelFormat);
91                         Assert.AreEqual (110, bmp.Width);
92                         Assert.AreEqual (100, bmp.Height);              
93                         
94                         Assert.AreEqual (0, rect.X);
95                         Assert.AreEqual (0, rect.Y);            
96                         Assert.AreEqual (110, rect.Width);
97                         Assert.AreEqual (100, rect.Height);                                     
98                         
99                         Assert.AreEqual (110, bmp.Size.Width);
100                         Assert.AreEqual (100, bmp.Size.Height);
101                         
102                 }
103
104                 //[Test]
105                 public void Save() 
106                 {                               
107                         string sOutFile =  "linerect" + getOutSufix() + ".jpeg";
108                                                 
109                         // Save         
110                         Bitmap  bmp = new Bitmap(100,100, PixelFormat.Format32bppRgb);                                          
111                         Graphics gr = Graphics.FromImage(bmp);          
112                         
113                         Pen p = new Pen(Color.Red, 2);
114                         gr.DrawLine(p, 10.0F, 10.0F, 90.0F, 90.0F);
115                         gr.DrawRectangle(p, 10.0F, 10.0F, 80.0F, 80.0F);
116                         p.Dispose();                                    
117                         bmp.Save(sOutFile, ImageFormat.Bmp);
118                         gr.Dispose();
119                         bmp.Dispose();                                                  
120                         
121                         // Load                 
122                         Bitmap  bmpLoad = new Bitmap(sOutFile);                                 
123                         
124                         Color color = bmpLoad.GetPixel(10,10);                                  
125                          
126                         //Assert.AreEqual (Color.FromArgb(255,255,0,0), color);                                                                                 
127                 }
128
129                 
130         }
131 }