- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何在 Awesomium 中处理 window.print() 事件以进行实际打印(不打印为 PDF)?我知道它将使用 WebView.PrintRequest 事件,但我不知道该怎么做
http://docs.awesomium.net/1_7_0/html/E_Awesomium_Core_WebView_PrintRequest.htm
最佳答案
Awesomium 不支持打印到打印机设备。相反,Awesomium 支持打印到 PDF 文件。
我对在 Windows 中打印的有限理解是,您通常需要使用GDI+ 绘图表面传递到打印事件的自定义事件处理程序中。 The MSDN documentation for the System.Drawing.Printing.PrintDocument class在提供示例实现方面做得很好。
我想人们可以使用 Awesomium .Net SDK 实现这种较低级别的打印,但是,如果没有支持,这可能是一场艰苦的战斗来自 Awesomium 的开发人员。
一个不错的“hack”可能是将 Awesomium 的打印到 PDF 功能与打印 PDF 文件粘合在一起。我可以想到至少 3 种从 C# 打印 PDF 文件的方法:
在最终用户的机器上使用 Acrobat Reader,通过 .Net 运行时可调用包装器 (RCW) 围绕 Acrobat 的 COM 自动化对象处理打印。参见 an example of using an Acrobat RCW in VB.NET .
使用用户机器上的任何 PDF 阅读器来处理打印。参见 an example of using the .Net ProcessStartInfo with the print verb to use the default PDF application on the user's machine .
使用 Windows 通用对话框选择打印机,然后将 PDF 发送到打印机进行原始(直接)打印。 (这类似于将 PostScript [.ps] 文件直接发送到打印机)。这仅适用于直接接受 PDF 文件的打印机。
下面是解决方法选项 #3 的示例,使用将 Awesomium PDF 文件直接发送到最终用户选择的打印机。
此答案结合了两个现有示例:Microsoft KB on raw printing with .Net和一个 Awesomium answer for printing .
运行演示会加载 Microsoft 知识库的 URL,其中包括调用 window.print()
的“打印”UI 按钮。
using System;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Printing;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using Awesomium.Core;
namespace Demo
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new PrinterDemo());
}
}
public class PrinterDemo : Form
{
private Awesomium.Windows.Forms.WebControl webControl;
private PrinterSettings printerSettings;
private string printerName;
public PrinterDemo()
{
InitializeComponent();
WindowState = FormWindowState.Maximized;
}
private void InitializeComponent()
{
this.webControl = new Awesomium.Windows.Forms.WebControl();
this.SuspendLayout();
//
// webControl1
//
this.webControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.webControl.Location = new System.Drawing.Point(0, 0);
this.webControl.Size = new System.Drawing.Size(784, 562);
this.webControl.Source = new System.Uri("http://support.microsoft.com/kb/322091", System.UriKind.Absolute);
this.webControl.TabIndex = 0;
this.webControl.PrintRequest += WebControl_PrintRequest;
this.webControl.PrintComplete += WebControl_PrintComplete;
this.webControl.PrintFailed += WebControl_PrintFailed;
//
// PrinterDemo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 562);
this.Controls.Add(this.webControl);
this.Name = "PrinterDemo";
this.Text = "PrinterDemo";
this.ResumeLayout(false);
}
/// <summary>Handle `window.print()` events</summary>
private void WebControl_PrintRequest(object sender, PrintRequestEventArgs e)
{
this.Print();
e.Handled = true;
}
/// <summary>Event handler for successful printing</summary>
private void WebControl_PrintComplete(object sender, PrintCompleteEventArgs e)
{
// Print the file to the printer.
if (String.IsNullOrWhiteSpace(printerName))
{
return;
}
foreach (string file in e.Files)
{
System.Diagnostics.Debug.Print("Printing file {0}", file);
RawPrinterHelper.SendFileToPrinter(printerName, file);
}
}
/// <summary>Event handler for unsuccessful printing</summary>
private void WebControl_PrintFailed(object sender, PrintOperationEventArgs e)
{
MessageBox.Show("MyApp", "Printing failed", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
/// <summary>Sends a PDF file to the printer</summary>
private void Print()
{
PrintDialog printerDialog;
int requestId;
string path = System.IO.Path.GetTempPath();
if (!webControl.IsLive)
return;
printerDialog = new PrintDialog();
printerSettings = new PrinterSettings();
printerDialog.PrinterSettings = printerSettings;
if (DialogResult.OK == printerDialog.ShowDialog(this))
{
printerName = printerDialog.PrinterSettings.PrinterName;
requestId = webControl.PrintToFile(path, PrintConfig.Default);
}
}
}
public class RawPrinterHelper
{
// Structure and API declarions:
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public class DOCINFOA
{
[MarshalAs(UnmanagedType.LPStr)]
public string pDocName;
[MarshalAs(UnmanagedType.LPStr)]
public string pOutputFile;
[MarshalAs(UnmanagedType.LPStr)]
public string pDataType;
}
[DllImport("winspool.Drv", EntryPoint = "OpenPrinterA", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
public static extern bool OpenPrinter([MarshalAs(UnmanagedType.LPStr)] string szPrinter, out IntPtr hPrinter, IntPtr pd);
[DllImport("winspool.Drv", EntryPoint = "ClosePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
public static extern bool ClosePrinter(IntPtr hPrinter);
[DllImport("winspool.Drv", EntryPoint = "StartDocPrinterA", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
public static extern bool StartDocPrinter(IntPtr hPrinter, Int32 level, [In, MarshalAs(UnmanagedType.LPStruct)] DOCINFOA di);
[DllImport("winspool.Drv", EntryPoint = "EndDocPrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
public static extern bool EndDocPrinter(IntPtr hPrinter);
[DllImport("winspool.Drv", EntryPoint = "StartPagePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
public static extern bool StartPagePrinter(IntPtr hPrinter);
[DllImport("winspool.Drv", EntryPoint = "EndPagePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
public static extern bool EndPagePrinter(IntPtr hPrinter);
[DllImport("winspool.Drv", EntryPoint = "WritePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
public static extern bool WritePrinter(IntPtr hPrinter, IntPtr pBytes, Int32 dwCount, out Int32 dwWritten);
// SendBytesToPrinter()
// When the function is given a printer name and an unmanaged array
// of bytes, the function sends those bytes to the print queue.
// Returns true on success, false on failure.
public static bool SendBytesToPrinter(string szPrinterName, IntPtr pBytes, Int32 dwCount)
{
Int32 dwError = 0, dwWritten = 0;
IntPtr hPrinter = new IntPtr(0);
DOCINFOA di = new DOCINFOA();
bool bSuccess = false; // Assume failure unless you specifically succeed.
di.pDocName = "My C#.NET RAW Document";
di.pDataType = "RAW";
// Open the printer.
if (OpenPrinter(szPrinterName.Normalize(), out hPrinter, IntPtr.Zero))
{
// Start a document.
if (StartDocPrinter(hPrinter, 1, di))
{
// Start a page.
if (StartPagePrinter(hPrinter))
{
// Write your bytes.
bSuccess = WritePrinter(hPrinter, pBytes, dwCount, out dwWritten);
EndPagePrinter(hPrinter);
}
EndDocPrinter(hPrinter);
}
ClosePrinter(hPrinter);
}
// If you did not succeed, GetLastError may give more information
// about why not.
if (bSuccess == false)
{
dwError = Marshal.GetLastWin32Error();
}
return bSuccess;
}
public static bool SendFileToPrinter(string szPrinterName, string szFileName)
{
// Open the file.
FileStream fs = new FileStream(szFileName, FileMode.Open);
// Create a BinaryReader on the file.
BinaryReader br = new BinaryReader(fs);
// Dim an array of bytes big enough to hold the file's contents.
Byte[] bytes = new Byte[fs.Length];
bool bSuccess = false;
// Your unmanaged pointer.
IntPtr pUnmanagedBytes = new IntPtr(0);
int nLength;
nLength = Convert.ToInt32(fs.Length);
// Read the contents of the file into the array.
bytes = br.ReadBytes(nLength);
// Allocate some unmanaged memory for those bytes.
pUnmanagedBytes = Marshal.AllocCoTaskMem(nLength);
// Copy the managed byte array into the unmanaged array.
Marshal.Copy(bytes, 0, pUnmanagedBytes, nLength);
// Send the unmanaged bytes to the printer.
bSuccess = SendBytesToPrinter(szPrinterName, pUnmanagedBytes, nLength);
// Free the unmanaged memory that you allocated earlier.
Marshal.FreeCoTaskMem(pUnmanagedBytes);
return bSuccess;
}
public static bool SendStringToPrinter(string szPrinterName, string szString)
{
IntPtr pBytes;
Int32 dwCount;
// How many characters are in the string?
dwCount = szString.Length;
// Assume that the printer is expecting ANSI text, and then convert
// the string to ANSI text.
pBytes = Marshal.StringToCoTaskMemAnsi(szString);
// Send the converted ANSI string to the printer.
SendBytesToPrinter(szPrinterName, pBytes, dwCount);
Marshal.FreeCoTaskMem(pBytes);
return true;
}
}
}
我能够使用以下命令行将此示例作为名为 demo.cs
的单个文件进行编译和运行:
SETLOCAL
PATH C:\Windows\Microsoft.NET\Framework\v4.0.30319\;%PATH%
IF EXIST demo.exe DEL demo.exe
csc.exe /target:winexe /lib:"%ProgramFiles%\Awesomium Technologies LLC\Awesomium SDK\1.7.3.0\wrappers\Awesomium.NET\Assemblies" /reference:Awesomium.Core.dll,Awesomium.Windows.Forms.dll demo.cs
demo.exe
ENDLOCAL
关于c# - 在 Awesomium 中打印到打印机?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21966126/
我们正在将 Awesomium ( http://awesomium.com/ ) 用于一个新项目。 问题是在 JavaScript 中将一些数据保存在 localStorage 中时,它不是持久的。
我似乎找不到使用用户名和密码(http/socks4)的代理的方法。任何输入都会很棒:) 我正在使用 .net 包装器,但我想这没有任何区别。 谢谢, 约翰 最佳答案 您需要处理 WebControl
我是一名从事 Angular Awesomium 项目的 JS 开发人员 - 是否有人对如何使用 Awesomium Inspector 启用 console.log() 有明确的答案,这对我来说是必
我之前问过这个问题,但我想重新表述一下这个问题。我正在尝试为我的项目制作一个刮刀。我想让它显示链接的特定部分。链接中唯一发生变化的部分是数字。这个数字就是我想要抓取的。该链接如下所示: 如前所述,我
我用 awesomium 创建了一个 wpf 网络浏览器,但网页看起来不像 chrome 和其他浏览器那样清晰。我使用的是 visual c#。有人可以帮我解决这个问题吗? 最佳答案 在 1.6 分支
我刚开始使用 awesomium。我想了解如何更改用户代理和引荐来源网址。例如,我需要初始化 5 个 istance o awesomium webcontrol,对于它们中的每一个,我都需要不同的用
Javascript/HTML function configurator(clicked) { myGlobalObject.onLinkClicked(clicked.name);
我想用 C# 和 Awesomium 编写一个应用程序,以记住用户已登录该网站。为此,我使用以下代码: private void button1_Click(object sender, EventA
我在我的 wpf 应用程序中使用 Awesomium 浏览器控件。它从 url 加载网站,但我有问题。我的网站有一些目标为空白的 anchor 链接。但是当我单击该 anchor 标记时,没有任何反应
默认情况下,WPF 应用程序中的 awesomium 不支持缩放和平移的触摸事件: browserLeft.StylusDown += browserLeft_StylusDown; brow
所以我一直在尝试在我的一个副项目(C#,WPF 项目类型)中使用 IE 以外的东西作为我的 webcontrol,我一直在寻找替代方案并且在过去尝试过但未能实现它们. 我决定再试一次并实现 aweso
我想在我的 WPF 应用程序中使用 Awesomium 作为嵌入式网络浏览器。 我已经尝试安装最新的 Awesomium SDK (1.6.3b),以及之前的两个版本(1.6.2 和 1.6.1)。在
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 1 年前。
我正在使用 Awesomium 创建一个 headless 浏览器。我希望浏览器返回网络错误代码,所以我知道它是如何/为什么会中断的。 using (WebSession session = WebC
Go Home 我试图让Awesomium点击某个按钮,以上面的例子为例,没有ID只有一个标签 它可能没有 click()方法。 您可以尝试以下方法来检查: JSObject btn = web
我有一个 tabcontrol,在 tabcontrol 中我有两个 tabitem,它们都包含一个 awesomium Webcontrol。然而,经过一段时间的随机时间后,Webcontrols
大家好, 我正在用类中的 awesomium webcontrol 制作一个 Winform 项目。我将该控件导航到 http://www.google.com/(仅用于测试)并向其添加了一个 Doc
有没有办法在 webControl 中将 html 作为字符串加载? 类似于: webControl.Load("..."); 就像在普通的 wpf webControl 中使用的那样: webCon
我正在尝试使用外部 javascript 文件中的函数,这些文件包含在我的 html 页面中,带有“script”标签。直接在 html 页面中实现的 Javascript 函数似乎可以正常工作,但外
在这段代码中我得到了所有人的数量。这有效。现在我想从所有人中随机选出一个人,但这行不通。我在 using (person) 行收到一个 Microsoft.CSharp.RuntimeBinder.R
我是一名优秀的程序员,十分优秀!