使用c#将png文件转换为pcx文件

时间:2016-03-03 16:13:46

标签: c# winforms png file-conversion pcx

我尝试将.png文件转换为.pcx文件。方案如下:

我使用的是TSC TTP-343C标签打印机。在标签上我必须打印图像。 TSC为开发人员提供library documentation。由于我只能使用pcx文件在这些标签上打印图像,我必须将所有图像转换为pcx图像。任何其他格式或甚至不正确的pcx格式(例如,如果用户刚刚重命名文件结尾)将不会打印在标签上。

我看到this post链接到Magick库。在这篇文章中,OP试图将bmp文件转换为pcx文件,这不是我试图实现的。我查看了关于documentationMagick converting images。我试图将图像转换为:

using (MagickImage img = new MagickImage(png)) // png is a string containing the path of the .png file
{
    img.Format = MagickFormat.Pcx;
    img.Write(pcx); // pcx is a string containing the path of the new .pcx file
}

不幸的是,这不能正确保存图像。标签打印机仍然无法在标签上打印图像。我尝试打印正确的pcx文件,这很好用。所以我想它仍然无效的唯一原因是转换后的文件不是真正的pcx文件。

有没有办法进行这样的转换?如果是,我该如何实现?我的应用程序是一个Windows窗体应用程序,使用.NET Framework 4.5.2用C#编写。

修改

在这里,您可以看到如何使用pcx文件打印标签的示例:

TSC.openport(sPrinterName);
TSC.setup("100", "100", "4", "8", "1", "3.42", "0");
TSC.clearbuffer();

TSC.downloadpcx(@"\\PathToPcxFile\test.pcx", "test.pcx");
TSC.sendcommand("PUTPCX 35," + y + ",\"test.pcx\"");

TSC.printlabel("1", "1");
TSC.closeport();

此代码适用于真正的pcx文件。您可以找到TSC库的方法here

  

downloadpcx(A,B)

     

描述:将单声道PCX图形文件下载到打印机参数:

     

a:string;文件名(包括文件检索   路径)

     

b:string,要下载的文件的名称   打印机内存(请使用大写字母)

     

来源:http://www.tscprinters.com/cms/upload/download_en/DLL_instruction.pdf

编辑II:

正在运行的pcx文件(使用photoshop创建)看起来像这样(如果它可以帮助你):

enter image description here

1 个答案:

答案 0 :(得分:6)

PCX files(充其量)是基于调色板的。

因此,要创建有效的pcx输出,您需要添加以下一行:

using (MagickImage image = new MagickImage(sourcePng))
{
    image.Format = MagickFormat.Pcx;
    image.ColorType = ColorType.Palette;  // <----
    image.Write(targetPcx);
}

Your image as pcx file