Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Photo.cs
2{
8 public class Photo(byte[] Binary, int Rotation)
9 {
14 public Photo(byte[] Source)
15 : this(Source, PhotosLoader.GetImageRotation(Source))
16 {
17 }
18
22 public ImageSource Source { get; } = ImageSource.FromStream(() => new MemoryStream(Binary));
23
27 public byte[] Binary { get; } = Binary;
28
32 public int Rotation { get; } = Rotation;
33 }
34}
class Photo(byte[] Binary, int Rotation)
Class containing information about a photo.
Definition: Photo.cs:8