wheelibin / SharpPDFLabel

Create sheets of labels in PDF format from any .NET/ASP.NET application
24 stars 21 forks source link

image not working #3

Open dorathoto opened 7 years ago

dorathoto commented 7 years ago
        public void AddImage(Stream img)
        {
        }

in Label.cs I checked the code for not implemented


The correct would not it?

        public void AddImage(Stream img)
        {
            var mem = new MemoryStream();
            CopyStream(img, mem);
            _images.Add(mem.GetBuffer());
        }