<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Sending a bit image to an Epson TM-T88III receipt printer using C# and ESC/POS</title>
	<atom:link href="http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/feed/" rel="self" type="application/rss+xml" />
	<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/</link>
	<description>Confessions of a small business software developer</description>
	<lastBuildDate>Mon, 06 Sep 2010 09:17:19 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Math</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1757</link>
		<dc:creator>Math</dc:creator>
		<pubDate>Tue, 03 Aug 2010 03:23:32 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1757</guid>
		<description>Thanks for the code. I translated it to Delphi and its works well. Except for one thing your rendering is more clear executng your c# code than my delphi code. Curiously I analyse all the output and everything is identic. Is there something else I should know.
Thanks</description>
		<content:encoded><![CDATA[<p>Thanks for the code. I translated it to Delphi and its works well. Except for one thing your rendering is more clear executng your c# code than my delphi code. Curiously I analyse all the output and everything is identic. Is there something else I should know.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Santosh</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1748</link>
		<dc:creator>Santosh</dc:creator>
		<pubDate>Fri, 02 Jul 2010 10:20:04 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1748</guid>
		<description>Hi,
   I am trying to rotate barcode ,and gone through various blogs and documents but did not find any command for rotating the barcode.I found the following command but it is for only to rotate text and anynhow i tried and found not working for Barcode .

Code:

            //rotate barcode
            bw.Write(AsciiControlChars.Escape);
            bw.Write(&#039;V&#039;);
            bw.Write((byte)2);

            //set position of text on barcode:    above,below 
            bw.Write(GS);
            bw.Write((char)0x48); //H
            bw.Write((byte)1);
            
            //set height of bar code
            bw.Write(GS);
            bw.Write(&#039;h&#039;);
            bw.Write((byte)100);
            
            //set width of bar code
            bw.Write(GS);
            bw.Write(&#039;w&#039;);
            bw.Write((byte)2);

            

            //print bar code
            bw.Write(GS);
            bw.Write(&#039;k&#039;);
            bw.Write((byte)65); 
            bw.Write((byte)12);
            bw.Write(Encoding.ASCII.GetBytes(barcode));</description>
		<content:encoded><![CDATA[<p>Hi,<br />
   I am trying to rotate barcode ,and gone through various blogs and documents but did not find any command for rotating the barcode.I found the following command but it is for only to rotate text and anynhow i tried and found not working for Barcode .</p>
<p>Code:</p>
<p>            //rotate barcode<br />
            bw.Write(AsciiControlChars.Escape);<br />
            bw.Write(&#8216;V&#8217;);<br />
            bw.Write((byte)2);</p>
<p>            //set position of text on barcode:    above,below<br />
            bw.Write(GS);<br />
            bw.Write((char)0&#215;48); //H<br />
            bw.Write((byte)1);</p>
<p>            //set height of bar code<br />
            bw.Write(GS);<br />
            bw.Write(&#8216;h&#8217;);<br />
            bw.Write((byte)100);</p>
<p>            //set width of bar code<br />
            bw.Write(GS);<br />
            bw.Write(&#8216;w&#8217;);<br />
            bw.Write((byte)2);</p>
<p>            //print bar code<br />
            bw.Write(GS);<br />
            bw.Write(&#8216;k&#8217;);<br />
            bw.Write((byte)65);<br />
            bw.Write((byte)12);<br />
            bw.Write(Encoding.ASCII.GetBytes(barcode));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashanth</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1747</link>
		<dc:creator>Prashanth</dc:creator>
		<pubDate>Thu, 01 Jul 2010 14:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1747</guid>
		<description>HI Nicholas,

I am trying to print korean text using ESC /POS command 
but it prints some ascii characters

            bw.Write((byte)28);
            bw.Write((byte)43);
            bw.Write((byte)0); // FS C 0
            bw.Write((byte)28);
            bw.Write(&#039;&amp;&#039;);     // FS &amp;
            bw.Write((byte)28);
            bw.Write(&#039;!&#039;);
            bw.Write((byte)4); // FS ! 0
            bw.Write(&quot;양용준&quot;);  // Korean Text

Please let me know where is the problem in the above code. Mail ID : prashanthmys@gmail.com</description>
		<content:encoded><![CDATA[<p>HI Nicholas,</p>
<p>I am trying to print korean text using ESC /POS command<br />
but it prints some ascii characters</p>
<p>            bw.Write((byte)28);<br />
            bw.Write((byte)43);<br />
            bw.Write((byte)0); // FS C 0<br />
            bw.Write((byte)28);<br />
            bw.Write(&#8216;&amp;&#8217;);     // FS &amp;<br />
            bw.Write((byte)28);<br />
            bw.Write(&#8216;!&#8217;);<br />
            bw.Write((byte)4); // FS ! 0<br />
            bw.Write(&#8220;양용준&#8221;);  // Korean Text</p>
<p>Please let me know where is the problem in the above code. Mail ID : <a href="mailto:prashanthmys@gmail.com">prashanthmys@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Santosh</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1746</link>
		<dc:creator>Santosh</dc:creator>
		<pubDate>Thu, 01 Jul 2010 11:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1746</guid>
		<description>Hi,
    Can you please help me if i am missing anything in the following code for printing barcode to Epson TM-L90P printer in C# .

Code:

bw.Write((char)0×1D); //GS
//font selection
bw.Write((char)0×66); //font
bw.Write(0); //font A

//set position of barcode
bw.Write(GS);
bw.Write((char)0×48); //H
bw.Write(2);

//set width
bw.Write(GS);
bw.Write((char)0×77); //w
bw.Write(6);

//set height
bw.Write(GS);
bw.Write((char)0×68); //h
bw.Write(100);
bw.Write(GS);
bw.Write((char)0×6B); //K
bw.Write(2); //m =2 :Ean13 barcode
bw.Write(13); //K = 12,13

//barcode data
bw.Write(48);
bw.Write(49);
bw.Write(50);
bw.Write(51);
bw.Write(52);
bw.Write(53);
bw.Write(54);
bw.Write(55);
bw.Write(56);
bw.Write(57);
bw.Write(50);
bw.Write(51);
bw.Write(50);

bw.Write((char)0×00); //null

Mail Id : santosh.rachakonda@in.tesco.com</description>
		<content:encoded><![CDATA[<p>Hi,<br />
    Can you please help me if i am missing anything in the following code for printing barcode to Epson TM-L90P printer in C# .</p>
<p>Code:</p>
<p>bw.Write((char)0×1D); //GS<br />
//font selection<br />
bw.Write((char)0×66); //font<br />
bw.Write(0); //font A</p>
<p>//set position of barcode<br />
bw.Write(GS);<br />
bw.Write((char)0×48); //H<br />
bw.Write(2);</p>
<p>//set width<br />
bw.Write(GS);<br />
bw.Write((char)0×77); //w<br />
bw.Write(6);</p>
<p>//set height<br />
bw.Write(GS);<br />
bw.Write((char)0×68); //h<br />
bw.Write(100);<br />
bw.Write(GS);<br />
bw.Write((char)0×6B); //K<br />
bw.Write(2); //m =2 :Ean13 barcode<br />
bw.Write(13); //K = 12,13</p>
<p>//barcode data<br />
bw.Write(48);<br />
bw.Write(49);<br />
bw.Write(50);<br />
bw.Write(51);<br />
bw.Write(52);<br />
bw.Write(53);<br />
bw.Write(54);<br />
bw.Write(55);<br />
bw.Write(56);<br />
bw.Write(57);<br />
bw.Write(50);<br />
bw.Write(51);<br />
bw.Write(50);</p>
<p>bw.Write((char)0×00); //null</p>
<p>Mail Id : <a href="mailto:santosh.rachakonda@in.tesco.com">santosh.rachakonda@in.tesco.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Santosh</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1745</link>
		<dc:creator>Santosh</dc:creator>
		<pubDate>Thu, 01 Jul 2010 10:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1745</guid>
		<description>Hi,
       This blog is very useful for printing image to printer.Thanks a lot,can you please help me in printing barcode to printer. 
I am using the following commands for printing barcode but not working,instead it prints empty space.

Code:


            bw.Write((char)0x1D); //GS
            //font selection
            bw.Write((char)0x66); //font
            bw.Write(0); //font A

            //set position of barcode
            bw.Write(GS);
            bw.Write((char)0x48); //H
            bw.Write(2);

            //set width
            bw.Write(GS);
            bw.Write((char)0x77); //w
            bw.Write(6);

            //set height
            bw.Write(GS);
            bw.Write((char)0x68); //h
            bw.Write(100);
 bw.Write(GS);
            bw.Write((char)0x6B); //K
            bw.Write(2); //m =2 :Ean13 barcode
            bw.Write(13); //K = 12,13

//barcode data
            bw.Write(48);
            bw.Write(49);
            bw.Write(50);
            bw.Write(51);
            bw.Write(52);
            bw.Write(53);
            bw.Write(54);
            bw.Write(55);
            bw.Write(56);
            bw.Write(57);
            bw.Write(50);
            bw.Write(51);
            bw.Write(50);

            bw.Write((char)0x00); //null</description>
		<content:encoded><![CDATA[<p>Hi,<br />
       This blog is very useful for printing image to printer.Thanks a lot,can you please help me in printing barcode to printer.<br />
I am using the following commands for printing barcode but not working,instead it prints empty space.</p>
<p>Code:</p>
<p>            bw.Write((char)0&#215;1D); //GS<br />
            //font selection<br />
            bw.Write((char)0&#215;66); //font<br />
            bw.Write(0); //font A</p>
<p>            //set position of barcode<br />
            bw.Write(GS);<br />
            bw.Write((char)0&#215;48); //H<br />
            bw.Write(2);</p>
<p>            //set width<br />
            bw.Write(GS);<br />
            bw.Write((char)0&#215;77); //w<br />
            bw.Write(6);</p>
<p>            //set height<br />
            bw.Write(GS);<br />
            bw.Write((char)0&#215;68); //h<br />
            bw.Write(100);<br />
 bw.Write(GS);<br />
            bw.Write((char)0&#215;6B); //K<br />
            bw.Write(2); //m =2 :Ean13 barcode<br />
            bw.Write(13); //K = 12,13</p>
<p>//barcode data<br />
            bw.Write(48);<br />
            bw.Write(49);<br />
            bw.Write(50);<br />
            bw.Write(51);<br />
            bw.Write(52);<br />
            bw.Write(53);<br />
            bw.Write(54);<br />
            bw.Write(55);<br />
            bw.Write(56);<br />
            bw.Write(57);<br />
            bw.Write(50);<br />
            bw.Write(51);<br />
            bw.Write(50);</p>
<p>            bw.Write((char)0&#215;00); //null</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashanth</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1742</link>
		<dc:creator>Prashanth</dc:creator>
		<pubDate>Fri, 25 Jun 2010 15:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1742</guid>
		<description>Hi Nick,

Really Wonderful blog, Even we are facing many problem in printing to TM L90 Epson Printer. We wanted to print the barcode, Getting printer status and Storing and printing images in NVRam using ESC / POS commands, Image printing is working gr8 .

Thank You,</description>
		<content:encoded><![CDATA[<p>Hi Nick,</p>
<p>Really Wonderful blog, Even we are facing many problem in printing to TM L90 Epson Printer. We wanted to print the barcode, Getting printer status and Storing and printing images in NVRam using ESC / POS commands, Image printing is working gr8 .</p>
<p>Thank You,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PSchomburg</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1713</link>
		<dc:creator>PSchomburg</dc:creator>
		<pubDate>Sat, 12 Jun 2010 18:08:42 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1713</guid>
		<description>Hi Nicholas,
 Stumbled upon this. excellent code.  Can you help me out with some printing issues I am having, I am in a similar small business model as you are, and I am sure you have encountered my problems before.  
Thank you.</description>
		<content:encoded><![CDATA[<p>Hi Nicholas,<br />
 Stumbled upon this. excellent code.  Can you help me out with some printing issues I am having, I am in a similar small business model as you are, and I am sure you have encountered my problems before.<br />
Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1671</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Tue, 01 Jun 2010 16:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1671</guid>
		<description>Hi, 

Craig, I read that you trancribed the c# code to delphi, could you send this code to make some test, i need to do the same, i would be thankful for your support</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Craig, I read that you trancribed the c# code to delphi, could you send this code to make some test, i need to do the same, i would be thankful for your support</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronnie</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1584</link>
		<dc:creator>Ronnie</dc:creator>
		<pubDate>Wed, 05 May 2010 04:53:26 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1584</guid>
		<description>Hi,
Would highly appreciate if I could have a C# example of printing something on TMT88III printer that includes:
1.Send a string to the printer
2.Print and cut

thanks and regards</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Would highly appreciate if I could have a C# example of printing something on TMT88III printer that includes:<br />
1.Send a string to the printer<br />
2.Print and cut</p>
<p>thanks and regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://nicholas.piasecki.name/blog/2009/12/sending-a-bit-image-to-an-epson-tm-t88iii-receipt-printer-using-c-and-escpos/comment-page-1/#comment-1567</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Fri, 26 Feb 2010 23:10:37 +0000</pubDate>
		<guid isPermaLink="false">http://nicholas.piasecki.name/blog/?p=442#comment-1567</guid>
		<description>FYI -
I didn&#039;t fully understand (&quot;grok&quot;, in geek terms) the nL and nH along with the C# width[0] and width[1].  Now I do.

At last, the Eureka Moment!

It Simply Works!

Thanks,
Craig</description>
		<content:encoded><![CDATA[<p>FYI -<br />
I didn&#8217;t fully understand (&#8220;grok&#8221;, in geek terms) the nL and nH along with the C# width[0] and width[1].  Now I do.</p>
<p>At last, the Eureka Moment!</p>
<p>It Simply Works!</p>
<p>Thanks,<br />
Craig</p>
]]></content:encoded>
	</item>
</channel>
</rss>
