为什么我的图元文件“丢失”位图?

时间:2011-01-27 11:11:54

标签: c# bitmap drawing metafile

最近我在使用图元文件绘制内容时发现了一个错误。现在我不确定我做错了什么,或者图元文件本身是否有错误:

在PlayEnhMetafile在另一个图元文件上绘制的图元文件上绘制图像时,我会丢失远远或向右的图像。我猜它与屏幕坐标有关(我运行双屏1280 * 1024,所以2560 * 1024),因为图像开始消失的底部通道大约是500。

以下是我创建的一些示例代码,可以更具体地向您展示问题。 (您只需使用此代码替换新创建的Windows C#项目的Form1.cs并在其上放置一个按钮)

using System;
using System.Drawing;
using System.Windows.Forms;
using System.Drawing.Imaging;
using System.IO;
using System.Runtime.InteropServices;

namespace MetaFileDrawing
{ 
 public partial class Form1
  : Form
 { 
  [DllImport("gdi32.dll", SetLastError = true)]
  private static extern bool PlayEnhMetaFile(IntPtr hdc, IntPtr hEmf, ref Rectangle rectangle);

  [DllImport("gdi32.dll", SetLastError = true)]
  public static extern bool DeleteObject(IntPtr hGdiObj);

  public Form1()
  {
   InitializeComponent();
  }

  /// <summary>
  /// Creates the sub-metafile where the actual drawing is done (and the problems occur).
  /// </summary>
  private Metafile GetSubMetafile()
  {
   Metafile metafile = null;
   using(Graphics controlGraphics = this.CreateGraphics())
   {
    using(MemoryStream memoryStream = new MemoryStream())
    {
     metafile = new Metafile(memoryStream, controlGraphics.GetHdc(), EmfType.EmfOnly, string.Empty);

     using(Graphics metafileGraphics = Graphics.FromImage(metafile))
     {
      Bitmap bitmap = new Bitmap("Fibonacci.png");
      // Draw the image 3 times... if pushed to far down, it wont show up?
      metafileGraphics.DrawRectangle(Pens.Yellow, new Rectangle(0, 0, 40, 1200));
      metafileGraphics.DrawImage(bitmap, new Point(0, 0));
      metafileGraphics.DrawImage(bitmap, new Point(10, 950));
      metafileGraphics.DrawImage(bitmap, new Point(20, 1150));
     }
    }
    controlGraphics.ReleaseHdc();
   }
   return metafile;
  }

  /// <summary>
  /// Creates and draws the metafile.
  /// </summary>
  private void DrawMetafile()
  {
   using(Graphics controlGraphics = this.CreateGraphics())
   {    
    using(MemoryStream memoryStream = new MemoryStream())
    {
     // EmfType.EmfOnly is a restriction defined by my project limitations
     Metafile metafile = new Metafile(memoryStream, controlGraphics.GetHdc(), EmfType.EmfOnly, string.Empty);

     using(Graphics metafileGraphics = Graphics.FromImage(metafile))
     {
      // A large red rect for orientation
      metafileGraphics.DrawRectangle(Pens.Red, new Rectangle(0, 0, 4000, 4000));

      // Create the sub metafile
      Metafile subMetafile = GetSubMetafile();

      // To check, draw the subMetafile with DrawImage (works fine, the inlined image is drawn 3 times)
      metafileGraphics.DrawImage(subMetafile, new Point(10, 0));

      // On the right side, draw the sub metafile using PlayEnhMetaFile (dont work correctly, only 2 images)
      IntPtr hMetafile = subMetafile.GetHenhmetafile();
      Rectangle rectangle1 = new Rectangle(100, 0, 170, 1230);
      PlayEnhMetaFile(metafileGraphics.GetHdc(), hMetafile, ref rectangle1);
      metafileGraphics.ReleaseHdc();
      DeleteObject(hMetafile);
     }

     metafile.Save("Output.emf");
    }
    controlGraphics.ReleaseHdc();
   }
  }

  private void button1_Click(object sender, EventArgs e)
  {
   DrawMetafile();
  }
 }
}

如您所见,使用PlayEnhMetaFile函数会导致我丢失三个图像中的一个。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我使用C ++遇到了同样的问题,并找到了两个解决方法。我可以使用GDI +附加到图元文件并播放它,但坐标略微偏离。我目前使用的更复杂的替代方法是使用EnumEnhMetaFile,并手动执行bitblt / stretchblt / stretchdibits调用,这似乎有效。如果您找到了更好的解决方案,请告诉我。

相关问题