minthantsin / imagelibrary

Automatically exported from code.google.com/p/imagelibrary
Other
0 stars 0 forks source link

Using BlitFill then calling the KalikoImage.Image object returns the image without the BlitFill operation #11

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Example code:

KalikoImage img = new KalikoImage(new MemoryStream(imgBytes));

img.BlitFill(@"C:\watermark.png");

MemoryStream ms = new MemoryStream();
img.Image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
return ms.ToArray();

What is the expected output? What do you see instead?
Image should have the BlitFill image overlaid. Saving the KalikoImage.Image to 
a bytearray does not have the image overlaid.

What version of the product are you using? On what operating system?
1.2.4

Original issue reported on code.google.com by hostmas...@referencepoint.co.uk on 4 Jan 2013 at 4:09

GoogleCodeExporter commented 9 years ago
Can't recreate this problem. Could you please provide more of the code?

Original comment by fr3dr...@gmail.com on 25 Feb 2013 at 9:09