通过写入字节在图片上写入文本
本文关键字:文本 字节 | 更新日期: 2023-09-27 18:35:13
我在下面编码,我有 image2 它是某处的图片,image3 是白色平面中的文本(例如用油漆写的"你好.exe默认的白色背景)。
我想在图片上显示文本,但代码不成功。 问题出在哪里?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.IO;
namespace test_AlignmentOFImages
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
WriteableBitmap bitmap;
private void Window_Loaded(object sender, RoutedEventArgs e)
{
byte []pixels=new byte[480*640*4];
for (int i = 0; i < pixels.Length; i++)
{
if (i % 16 == 0)
{
pixels[i] = 0xff;
}
else
{
pixels[i] = (byte)i;
}
//pixels[i] = (byte)0xff;//white
}
int stride2 = 480 * 4;
image2.Source = BitmapImage.Create((int)image2.Width, (int)image2.Height, 96, 96, PixelFormats.Bgra32, null, pixels, stride2);
byte [] imagePixels=new byte[480*640*4];
System.Drawing.Image img;
//System.Drawing.Bitmap bm;
try
{
//img = System.Drawing.Image.FromFile(@"E:'src'Tests'test_AlignmentOFImages'test_AlignmentOFImages'image3.jpg");
img = System.Drawing.Image.FromFile(@"E:'src'Tests'test_AlignmentOFImages'test_AlignmentOFImages'image3.png");
}
catch (Exception ex)
{
throw ex;
}
MemoryStream ms=new MemoryStream();
img.Save(ms, System.Drawing.Imaging.ImageFormat.Png); //img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
Array.Copy(ms.ToArray(), imagePixels, ms.ToArray().Length);
byte[] imagePixels2 = new byte[480 * 640*4];
image3.Source = null;
for (int i = 0; i < imagePixels.Length; i+=4)
{
if (imagePixels[i]<0xff )//if it is not white
{
imagePixels2[i] = imagePixels[i];//blue
imagePixels2[i+1] = imagePixels[i+1];//green
imagePixels2[i+2] = imagePixels[i+2];//red
imagePixels2[i+3] = 0xff;//alpha
}
}
image3.Source = BitmapImage.Create((int)image3.Width, (int)image3.Height, 96, 96, PixelFormats.Bgra32, null, imagePixels2, stride2);
}
}
}
我认为我使用的是假像素格式,对于 PNG 或 JPEG 格式,我必须使用特殊的像素格式(例如 BGR24 或......提前谢谢。
MemoryStream ms=new MemoryStream();
img.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
使用这些行,您可以处理像素数据并将其转换为 PNG 文件。但您希望继续操作像素数据。未格式化的 PNG 数据。
因此,请改用LockBits()
:
imagePixels = img.LockBits(new Rectangle(0, 0, img.Width, img.Height), ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);
下一个问题是您的复制方法。使用您提供的代码,您只需将 image3.png 复制到输出,丢弃任何 alpha 通道而不考虑白色区域。不要分配新的像素数组。使用之前定义的pixels
数组就足够了。
if (imagePixels[i]<0xff )//if it is not white
此语句不检查像素是否为白色。它只检查像素的红色通道是否为 255。您也应该检查其他频道。