ImageResize
ImageResize copied to clipboard
AddImageWatermark..., gif transparent background is black
the background is black.


code:
using (var img = AnimatedImage.FromFile(this.MapPath("22.gif", true)))
{
img.AddImageWatermark(this.MapPath("AAA.png", true),
new LazZiya.ImageResize.ImageWatermarkOptions()
{
Location = TargetSpot.TopLeft,
Margin = 1,
})
.SaveAs(this.MapPath("ahead.gif", true));
}
what should I do?
I will deep dive into this once I have time to do so.