打印做得不多,以前做套打時(shí)發(fā)現(xiàn),每臺(tái)打印機(jī)定位都不一樣,于是每臺(tái)機(jī)子都加了個(gè)偏移設(shè)置
創(chuàng)新互聯(lián)是一家專業(yè)提供兩當(dāng)企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站建設(shè)、成都做網(wǎng)站、H5響應(yīng)式網(wǎng)站、小程序制作等業(yè)務(wù)。10年已為兩當(dāng)眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。
我的做法在白紙上打上一標(biāo)尺,和一個(gè)上下邊距為2CM的交叉點(diǎn),然后用標(biāo)尺量這2CM的偏移,設(shè)置完后,在這臺(tái)打印機(jī)打印時(shí),就給紙張加個(gè)偏移量,打印就正常了??赡苣愕脑蚝臀乙粯印?/p>
另外也想問(wèn)你一下,你這個(gè)條碼是用什么打的。早先,我用立象的條碼打印機(jī)打不干膠,很簡(jiǎn)單,激光打沒(méi)用過(guò),可能下次我也要用條碼打印,我也用VB.net。求教.
使用jquery.print插件
我用得jQuery.print, version 1.3.2。
頁(yè)面上調(diào)用代碼如下:PrintArea就是你panel的ID....
script src="~/Scripts/jQuery.print.js"/script
script
function printarea() {
$("#PrintArea").print({
globalStyles: true,
mediaPrint: false,
stylesheet: null,
noPrintSelector: ".no-print",
iframe: true,
append: null,
prepend: null,
manuallyCopyFormValues: true,
deferred: $.Deferred()
});
}
/script
a class="btn btn-success" onclick="printarea()"打印/a
用PrintForm控件,在Visual Basic PowerPacks項(xiàng)目列表中vb2008 SP1以后版本就有了,下面是代碼
Imports System.Drawing.Printing
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'先設(shè)置打印頁(yè)面的頁(yè)邊距
With Me.PrintForm1
Dim myMargins As New Margins '頁(yè)邊距設(shè)置信息是存放在這個(gè)Margins類型的對(duì)象中的
With myMargins '分別設(shè)置上下左右邊距,
.Left = 12
.Right = 12
.Top = 12
.Bottom = 12
End With
.PrinterSettings.DefaultPageSettings.Margins = myMargins '把myMargins對(duì)象賦給PrintForm1的設(shè)置屬性
End With
Me.Button1.Visible = False '這個(gè)是在打印的時(shí)候隱藏打印按鈕
Me.PrintForm1.Form = Me '設(shè)置要打印的窗體
Me.PrintForm1.Print() '調(diào)用打印窗體方法
Me.Button1.Visible = True '再把隱藏的打印按鈕顯示出來(lái)
End Sub
可以將打印機(jī)默認(rèn)打印設(shè)置改為黑白打印,如果打印對(duì)象是RGB配色,打印機(jī)驅(qū)動(dòng)轉(zhuǎn)換為CMYK顏色時(shí),黑色都是由彩色墨水組成的
2.可以試一下圖片從一個(gè)標(biāo)準(zhǔn)灰度圖片格式化而來(lái),這樣圖片自身只有黑白色,也許可以
實(shí)現(xiàn)打印功能的核心是PrintDocument類這個(gè)類屬于System.Drawing.Printing名字空間這個(gè)類封裝了當(dāng)前的打印設(shè)置頁(yè)面設(shè)置以及所
有的與打印有關(guān)的事件和方法
這個(gè)類包括以下幾個(gè)屬性 事件 和方法
1、PrinterSettings 屬性
存放打印機(jī)的設(shè)置信息這個(gè)屬性不需要程序員設(shè)置因?yàn)樗怯纱蛴?duì)話框獲取的
2、PrintCountroller 屬性
控制打印過(guò)程
3、DefaultPageSettings 屬性
存放頁(yè)面設(shè)置信息 打印紙大小方向等也不需要程序員設(shè)置因?yàn)樗怯身?yè)面設(shè)置對(duì)話框獲取的
4、DocumentName 屬性
指定文檔名稱,出現(xiàn)在打印機(jī)狀態(tài)窗口中
1。 BeginPrint事件
在打印之前發(fā)出
2. PrintPage事件
每打印一頁(yè)是發(fā)出,事件接受一個(gè)PrintPageEventArgs參數(shù)該參數(shù)封裝了打印相關(guān)的信息
PrintPageEventArgs參數(shù)有很多重要的屬性
1 Cancel 取消打印
2 Graphics 頁(yè)面的繪圖對(duì)象
3 HasMorePages 是否還有要打印的頁(yè)面
Print 方法 該方法沒(méi)有參數(shù) 調(diào)用它將按照當(dāng)前設(shè)置開(kāi)始打印
若實(shí)現(xiàn)打印功能首先構(gòu)造PrintDocument對(duì)象添加打印事件
PrintDocument printDocument;
private void InitializeComponent()
{
...
printDocument=new PrintDocument();
printDocument.PrintPage += new PrintPageEventHandler (this.printDocument_PrintPage);
...
}
實(shí)現(xiàn)打印事件功能
打印和繪圖類似都是調(diào)用Graphics 類的方法進(jìn)行畫(huà)圖 不同的是一個(gè)在顯示器上一個(gè)在打印紙上并且打印要進(jìn)行一些復(fù)雜的計(jì)算
如換行 分頁(yè)等。
private void printDocument_PrintPage(object sender,PrintPageEventArgs e)
{
StringReader lineReader = new StringReader(textBox.Text);
Graphics g = e.Graphics; //獲得繪圖對(duì)象
float linesPerPage = 0; //頁(yè)面的行號(hào)
float yPosition = 0; //繪制字符串的縱向位置
int count = 0; //行計(jì)數(shù)器
float leftMargin = e.MarginBounds.Left; //左邊距
float topMargin = e.MarginBounds.Top; //上邊距
string line = null; 行字符串
Font printFont = this.textBox.Font; //當(dāng)前的打印字體
SolidBrush myBrush = new SolidBrush(Color.Black);//刷子
linesPerPage = e.MarginBounds.Height / printFont.GetHeight(g);//每頁(yè)可打印的行數(shù)
//逐行的循環(huán)打印一頁(yè)
while(count linesPerPage ((line=lineReader.ReadLine()) != null))
{
yPosition = topMargin + (count * printFont.GetHeight(g));
g.DrawString(line, printFont, myBrush, leftMargin, yPosition, new StringFormat());
count++;
}
如果本頁(yè)打印完成而line不為空說(shuō)明還有沒(méi)完成的頁(yè)面這將觸發(fā)下一次的打印事件在下一次的打印中l(wèi)ineReader會(huì)
自動(dòng)讀取上次沒(méi)有打印完的內(nèi)容因?yàn)閘ineReader是這個(gè)打印方法外的類的成員它可以記錄當(dāng)前讀取的位置
if(line != null)
e.HasMorePages = true;
else
e.HasMorePages = false;
}
打印設(shè)置,構(gòu)造打印對(duì)話框 將對(duì)話框中設(shè)置的Document屬性賦給printDocument這樣會(huì)將用戶的設(shè)置自動(dòng)保存到printDocument
的PrinterSettings屬性中
protected void FileMenuItem_PrintSet_Click(object sender,EventArgs e)
{
PrintDialog printDialog = new PrintDialog();
printDialog.Document = printDocument;
printDialog.ShowDialog();
}
頁(yè)面設(shè)置和打印預(yù)覽與打印設(shè)置原理相同都是構(gòu)造對(duì)話框?qū)⒂脩粼趯?duì)話框中的設(shè)置保存到相應(yīng)的類的屬性中
protected void FileMenuItem_PageSet_Click(object sender,EventArgs e)
{
PageSetupDialog pageSetupDialog = new PageSetupDialog();
pageSetupDialog.Document = printDocument;
pageSetupDialog.ShowDialog();
}
打印預(yù)覽
protected void FileMenuItem_PrintView_Click(object sender,EventArgs e)
{
PrintPreviewDialog printPreviewDialog = new PrintPreviewDialog();
printPreviewDialog.Document = printDocument;
try
{
printPreviewDialog.ShowDialog();
}
catch(Exception excep)
{
MessageBox.Show(excep.Message, "打印出錯(cuò)", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
打印就可以直接調(diào)用printDocument的Print()方法因?yàn)橛脩艨赡茉诖蛴≈斑€要再更改打印設(shè)置所以
在這里再次顯示打印設(shè)置對(duì)話框
protected void FileMenuItem_Print_Click(object sender,EventArgs e)
{
PrintDialog printDialog = new PrintDialog();
printDialog.Document = printDocument;
lineReader = new StringReader(textBox.Text);
if (printDialog.ShowDialog() == DialogResult.OK)
{
try
{
printDocument.Print();
}
catch(Exception excep)
{
MessageBox.Show(excep.Message, "打印出錯(cuò)", MessageBoxButtons.OK, MessageBoxIcon.Error);
printDocument.PrintController.OnEndPrint(printDocument,new PrintEventArgs());
}
}
}
總結(jié)打印的過(guò)程是
1 在應(yīng)用程序窗體初始化時(shí)構(gòu)造PrintDocument對(duì)象 添加 printDocument 的 PrintPage 方法
2 實(shí)現(xiàn)PrintPage方法 4 在用戶的單擊事件中調(diào)用 printDocument 的 Print方法實(shí)現(xiàn)打印功能
在這中間可能要用到 PrintDialog PrintPreviewDialog PageSetupDialog 設(shè)置和查看打印效
分享文章:vb.net使用打印機(jī)的簡(jiǎn)單介紹
本文路徑:http://jinyejixie.com/article22/dsseijc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開(kāi)發(fā)、營(yíng)銷型網(wǎng)站建設(shè)、靜態(tài)網(wǎng)站、網(wǎng)站策劃、外貿(mào)建站、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)