- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是新来的,所以我希望我的消息能被清楚地编辑...
我试图在这里向您展示一张非常解释性的图片,但不允许新用户发布图片。好吧,换句话说:当打印在纸上或 PDF 时,我画了 3 条恰好 10 厘米的线。但是在屏幕上,中间线应该看起来与最低线相同。它们之间的唯一区别是 Width 属性。第一条红线。宽度为 0.1 毫米,第二条红线。宽度为 0.5 毫米。
我给两条红线都设置了 DashPattern:4mm 破折号 - 1mm 间距 - 1mm 破折号 - 1mm 间距。
如我所写;打印时,红色线条上的 Dash 图案完全相同!当图形显示在屏幕上时,我认为这是一个错误,但也许我遗漏了一些东西......您将在下面找到要复制/粘贴的 C# 示例项目的完整代码。
提前致谢!
保罗
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Printing;
public partial class Form1 : Form
{
PrintDialog dialog1 = new PrintDialog();
PrintDocument printdocument1 = new PrintDocument();
public Form1()
{
this.Text = "System.Drawing.Pen: Bug?";
this.Width = 600;
this.Height = 400;
// add panel on form
Panel panel1 = new Panel();
panel1.Width = 500;
panel1.Height = 300;
panel1.BackColor = Color.White;
panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
this.Controls.Add(panel1);
// add print button on form
Button butPrint = new Button();
butPrint.Size = new Size(72, 28);
butPrint.Location = new Point(510, 20);
butPrint.Text = "Print";
butPrint.Click += new System.EventHandler(this.butPrint_Click);
this.Controls.Add(butPrint);
// add printpage handler
this.printdocument1.PrintPage += new PrintPageEventHandler(this.printdocument1_PrintPage);
}
private void makeSomeGraphics(Graphics g)
{
g.Clear(Color.White);
//g.SmoothingMode = SmoothingMode.AntiAlias;
g.PageUnit = GraphicsUnit.Millimeter;
g.PageScale = 1.0f;
Pen thinPenBlack = new Pen(Brushes.Black, 0.1f); // penWidth = 0.1mm
Pen thinPenRed = new Pen(Brushes.Red, 0.1f); // penWidth = 0.1mm
Pen thickPenRed = new Pen(Brushes.Red, 0.5f); // penWidth = 0.5mm
float y = 20.0f;
thinPenBlack.DashStyle = DashStyle.Solid;
g.DrawLine(thinPenBlack, 10, y, 110, y);
y = 30.0f;
// The length of each dash and space in the dash pattern is the product of the element value in the array and the width of the Pen
// so divide float by penWidth
float w = thinPenRed.Width;
thinPenRed.DashPattern = new float[] { 4.0f / w, 1.0f / w, 1.0f / w, 1.0f / w };
g.DrawLine(thinPenRed, 10, y, 110, y);
// now, a wider pen
y = 40.0f;
w = thickPenRed.Width;
thickPenRed.DashPattern = new float[] { 4.0f / w, 1.0f / w, 1.0f / w, 1.0f / w };
g.DrawLine(thickPenRed, 10, y, 110, y);
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
makeSomeGraphics(e.Graphics);
}
private void butPrint_Click(object sender, EventArgs e)
{
dialog1.UseEXDialog = true;
dialog1.Document = printdocument1;
if (dialog1.ShowDialog() == DialogResult.OK)
{
printdocument1.Print();
}
}
private void printdocument1_PrintPage(object sender, PrintPageEventArgs e)
{
makeSomeGraphics(e.Graphics);
e.HasMorePages = false;
}
}
最佳答案
不知何故,如果您将 thinPenRed 的厚度值更改为 >= 0.4f,您将在屏幕上和打印上得到相同的图案。除以 w
时是否会出现舍入问题?
关于c# - System.Drawing.Pen 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8413631/
我有一个带有帮助页面的 Web API 2 项目,该项目在本地运行良好,但当我将其推送到 Azure 时抛出此错误: Method not found: 'System.String System.S
我有两台服务器,但通常运行相同的设置 - IIS、SQL Server 等。一台给我这个错误,另一台没有。我从 Visual Studio 向两者发布相同的代码。 它们都在运行 .NET CLR Ve
System.out声明为 public static final PrintStream out。 但是你可以调用System.setOut()重新分配它。 嗯?如果它是 final,这怎么可能?
System.out被声明为 public static final PrintStream out。 但是您可以调用System.setOut()重新分配它。 嗯?如果是 final,这怎么可能?
我有这个 linq 查询: private void GetReceivedInvoiceTasks(User user, List tasks) { var areaIds = user.A
我有一个 MonoTouch 应用程序,当我为设备编译它时,出现以下错误: Error MT2002: Can not resolve reference: System.Boolean System
您好,我有一个名为 DailyVisitReport 的 View 。在该 View 中,我有两个名为 FromDate 和 toDate 的字段。如果我选择 FromDate 和 ToDate 取决
是否可以从 ObjectContext 对象中读取元组列表? 我在存储过程中有类似这样的数据库查询 SELECT T.Id as Item1, -- this is guid T.Wo
我正在尝试创建 Odata 端点,但每当我尝试执行任何涉及日期的查询时都会收到此错误。 我在下面的非常简单示例中重新创建了它。 数据库表 EDMX(片段)
我正在尝试创建 Odata 端点,但每当我尝试执行任何涉及日期的查询时都会收到此错误。 我在下面的非常简单示例中重新创建了它。 数据库表 EDMX(片段)
我有一个方法可以从数据读取器的数据中生成类类型列表。 if (datareader != null && datareader .HasRows) { Dictionary pDict= GetP
我有一些旧的 C++ 代码,它们使用 stdio 进行输入和输出。该代码还通过 fork 生成新进程。它将 stdio 重新映射到每个新进程,以便每个 session 获取其各自的数据。 我正在考虑使
我的应用程序可以很好地构建/链接/部署到模拟器,但我只是第一次尝试将应用程序构建/部署到真实设备,并且链接器失败。 我不使用 System.Console或 ConsoleColor在我的应用程序的任
主要是我很好奇。 我们有一个名为 Unit 的对象在我们的代码库中 - 代表桥梁或道路的组件。在我们的例子中,看到带有 Unit 的 ReactiveUI 命令可能会模棱两可。作为声明中的泛型之一。
我试图将Object变量转换为StreamWriter。但是,它不起作用。有什么错? StreamWriter file = (StreamWriter) myObject; 最佳答案 myObjec
为什么以下不编译? using System; using System.Linq; using System.Linq.Expressions; public static class Extens
我正在使用 Visual Studio Community 2015 开发面向 .NET 4.5 的 Visual Basic 应用程序.我没有编写应用程序,所以我使用 NuGet 添加了所有缺失的依
我刚刚开始使用 powershell,我正在制作一个非常简单的加密功能。我想获取字符串中的每个字符,将其转换为 int 并添加一个选定的数字,然后将其转换回一个字符。 这工作正常: function
一些使用我的应用程序的人似乎变得越来越 System.MissingMethodException: Method not found: 'System.Object System.Windows.T
我是 C# 和实体的新手 我想知道是否有人在这里帮助我。我选择了哪个返回我的 customerid,所以我想将它作为参数传递给我的构造函数,我的构造函数参数类型是 guid 但我的选择类型不同,我不知
我是一名优秀的程序员,十分优秀!