I've created a small console application in c# (compiled as x86) that creates .png image files based on smaller template images. As usual it works fine on my machine (Win 7 x64) but on the client machines, I get the following error:
16 bit MS-DOS Subsystem
The NTVDM CPU has encountered an illegal instruction
CS:0dfd IP:04b1 OP:65 63 74 69 6f Choose 'Close' to terminate the application
I've added some debugging and found the area where it's failing:
using (var bmp = new Bitmap(baseImagePath, true))
using (var img = Graphics.FromImage(bmp))
{
using (var firstImage = new Bitmap(firstImagePath, true))
{
img.DrawImage(firstImage, -11, -11);
}
bmp.Save(
string.Format("{0}\\{1}.png", savePath, cardId),
System.Drawing.Imaging.ImageFormat.Png);
}
Looking at the code it seems like there is a problem with using System.Drawing. Any help would be appreciated. Thanks