如何在C#中更改EMF +图像的颜色

时间:2018-05-02 15:22:03

标签: c# gdi+ metafile system.drawing.imaging

我正在尝试开发一种特殊的热图,其中标记的颜色取决于某些计算变量的值。

我需要做的是改变现有EMF + -Image的颜色。使用png或wmf文件时,以下代码的工作方式类似于魅力,但使用EMF +文件时DrawImage不会绘制任何内容:

//EMF+ image (color = red)
Metafile mf = new Metafile(@"C:\output\redman.emf");

//changes the color of the image from red to green (works with .png, but not with EMF+)
float[][] matrixColTrans = 
{
  new float[] {215.0f / 195.0f, 0, 0, 0, 0}
    , new float[] {0, 240.0f / 45.0f, 0, 0, 0}
    , new float[] {0, 0, 80.0f / 5.0f, 0, 0}
    , new float[] {0, 0, 0, 1, 0}
    , new float[] {0, 0, 0, 0, 1}
};
ColorMatrix colorMatrix = new ColorMatrix(matrixColTrans);

ImageAttributes ia = new ImageAttributes();
ia.SetColorMatrix(colorMatrix);

g.DrawImage(
    mf
    , new Rectangle(80, 0, 20, 50)// destination rectangle 
    , 0, 0 // upper-left corner of source rectangle 
    , mf.Width // width of source rectangle
    , mf.Height // height of source rectangle
    , GraphicsUnit.Pixel
    , ia
);

例如,使用ia.SetRemapTable时会发生同样的事情。

关于如何解决这个问题的任何想法?

0 个答案:

没有答案