Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i serialize a picture with Jason-serializer? I have a class that one property of this class is picture and for WCF Serilization i need to serialize this object with jason serializer, but it is not possible to do that.

share|improve this question

2 Answers

up vote 2 down vote accepted

Json.NET serializes byte arrays as base64 encoded text.

share|improve this answer

Use this way of returning Stream (from WCF RAW programming)


    [OperationContract, WebGet]
    public Stream GetTestImage(Image image)
    {
        MemoryStream stream = new MemoryStream();
        image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
        stream.Position = 0;
        WebOperationContext.Current.OutgoingResponse.ContentType = "image/jpeg";
        return stream;
    }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.