Note: You must be registered in order to post a reply.To register, click here. Registration is FREE!
// Append a JPEG that is Base64 encoded ms := TMemoryStream.Create(); try IEDecode64( SourceStream, ms); ms.Position := 0; ImageEnMView1.AppendImage( ms, ioJPEG ); finally ms.Free(); end;