Exemplo n.º 1
0
 /// <summary>
 /// Closes the encoded image handling null.
 /// </summary>
 /// <param name="encodedImage">
 /// The encoded image to close.
 /// </param>
 public static void CloseSafely(EncodedImage encodedImage)
 {
     if (encodedImage != null)
     {
         encodedImage.Dispose();
     }
 }
Exemplo n.º 2
0
        /// <summary>
        /// Returns a new CloseableReference to the same underlying
        /// SharedReference or null if invalid. The SharedReference
        /// ref-count is incremented.
        /// </summary>
        public EncodedImage CloneOrNull()
        {
            EncodedImage encodedImage;

            if (_inputStreamSupplier != null)
            {
                encodedImage = new EncodedImage(_inputStreamSupplier, StreamSize);
            }
            else
            {
                CloseableReference <IPooledByteBuffer> pooledByteBufferRef =
                    CloseableReference <IPooledByteBuffer> .CloneOrNull(_pooledByteBufferRef);

                try
                {
                    encodedImage = (pooledByteBufferRef == null) ?
                                   null :
                                   new EncodedImage(pooledByteBufferRef);
                }
                finally
                {
                    // Close the recently created reference since it will be
                    // cloned again in the constructor.
                    CloseableReference <IPooledByteBuffer> .CloseSafely(pooledByteBufferRef);
                }
            }

            if (encodedImage != null)
            {
                encodedImage.CopyMetaDataFrom(this);
            }

            return(encodedImage);
        }
Exemplo n.º 3
0
 /// <summary>
 /// Copy the meta data from another EncodedImage.
 /// </summary>
 /// <param name="encodedImage">
 /// The EncodedImage to copy the meta data from.
 /// </param>
 public void CopyMetaDataFrom(EncodedImage encodedImage)
 {
     Format        = encodedImage.Format;
     Width         = encodedImage.Width;
     Height        = encodedImage.Height;
     RotationAngle = encodedImage.RotationAngle;
     SampleSize    = encodedImage.SampleSize;
     StreamSize    = encodedImage.Size;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Returns the cloned encoded image if the parameter received is
 /// not null, null otherwise.
 /// </summary>
 /// <param name="encodedImage">The EncodedImage to clone.</param>
 public static EncodedImage CloneOrNull(EncodedImage encodedImage)
 {
     return(encodedImage != null?encodedImage.CloneOrNull() : null);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Checks if the encoded image is valid i.e. is not null, and
 /// is not closed.
 /// <returns>True if the encoded image is valid.</returns>
 /// </summary>
 public static bool IsValid(EncodedImage encodedImage)
 {
     return(encodedImage != null && encodedImage.Valid);
 }
Exemplo n.º 6
0
 /// <summary>
 /// Returns true if all the image information has loaded, false otherwise.
 /// </summary>
 public static bool IsMetaDataAvailable(EncodedImage encodedImage)
 {
     return(encodedImage.RotationAngle >= 0 &&
            encodedImage.Width >= 0 &&
            encodedImage.Height >= 0);
 }