Prettify scan result screen, I think
[zxing.git] / csharp / Writer.cs
index dcba9ec..540b917 100755 (executable)
@@ -1,4 +1,4 @@
-/*\r
+/*\r
 * Copyright 2008 ZXing authors\r
 *\r
 * Licensed under the Apache License, Version 2.0 (the "License");\r
 * See the License for the specific language governing permissions and\r
 * limitations under the License.\r
 */\r
+using System;\r
+using ByteMatrix = com.google.zxing.common.ByteMatrix;\r
 namespace com.google.zxing\r
 {\r
-    using System;\r
-    using ByteMatrix = com.google.zxing.common.ByteMatrix;\r
-    /// <summary> The base class for all objects which encode/generate a barcode image.\r
-    /// *\r
-    /// </summary>\r
-    /// <author>  dswitkin@google.com (Daniel Switkin)\r
-    /// \r
-    /// </author>\r
-    public interface Writer\r
-    {\r
-        /// <summary> Encode a barcode using the default settings.\r
-        /// *\r
-        /// </summary>\r
-        /// <param name="contents">The contents to encode in the barcode\r
-        /// </param>\r
-        /// <param name="format">The barcode format to generate\r
-        /// </param>\r
-        /// <param name="width">The preferred width in pixels\r
-        /// </param>\r
-        /// <param name="height">The preferred height in pixels\r
-        /// </param>\r
-        /// <returns> The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)\r
-        /// \r
-        /// </returns>\r
-        ByteMatrix encode(System.String contents, BarcodeFormat format, int width, int height);\r
-        /// <summary>*\r
-        /// </summary>\r
-        /// <param name="contents">The contents to encode in the barcode\r
-        /// </param>\r
-        /// <param name="format">The barcode format to generate\r
-        /// </param>\r
-        /// <param name="width">The preferred width in pixels\r
-        /// </param>\r
-        /// <param name="height">The preferred height in pixels\r
-        /// </param>\r
-        /// <param name="hints">Additional parameters to supply to the encoder\r
-        /// </param>\r
-        /// <returns> The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)\r
-        /// \r
-        /// </returns>\r
-        ByteMatrix encode(System.String contents, BarcodeFormat format, int width, int height, System.Collections.Hashtable hints);\r
-    }\r
+       \r
+       /// <summary> The base class for all objects which encode/generate a barcode image.\r
+       /// \r
+       /// </summary>\r
+       /// <author>  dswitkin@google.com (Daniel Switkin)\r
+       /// </author>\r
+       /// <author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source \r
+       /// </author>\r
+\r
+       public interface Writer\r
+       {\r
+               \r
+               /// <summary> Encode a barcode using the default settings.\r
+               /// \r
+               /// </summary>\r
+               /// <param name="contents">The contents to encode in the barcode\r
+               /// </param>\r
+               /// <param name="format">The barcode format to generate\r
+               /// </param>\r
+               /// <param name="width">The preferred width in pixels\r
+               /// </param>\r
+               /// <param name="height">The preferred height in pixels\r
+               /// </param>\r
+               /// <returns> The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)\r
+               /// </returns>\r
+               ByteMatrix encode(System.String contents, BarcodeFormat format, int width, int height);\r
+               \r
+               /// <summary> </summary>\r
+               /// <param name="contents">The contents to encode in the barcode\r
+               /// </param>\r
+               /// <param name="format">The barcode format to generate\r
+               /// </param>\r
+               /// <param name="width">The preferred width in pixels\r
+               /// </param>\r
+               /// <param name="height">The preferred height in pixels\r
+               /// </param>\r
+               /// <param name="hints">Additional parameters to supply to the encoder\r
+               /// </param>\r
+               /// <returns> The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)\r
+               /// </returns>\r
+               ByteMatrix encode(System.String contents, BarcodeFormat format, int width, int height, System.Collections.Hashtable hints);\r
+       }\r
 }
\ No newline at end of file