///<summary>
        /// Retrieves last error from underlying turbo-jpeg library and throws exception.</summary>
        /// <exception cref="TJException"> Throws if low level turbo jpeg function fails. </exception>
        public static void GetErrorAndThrow()
        {
            var error = Marshal.PtrToStringAnsi(TurboJpegImport.TjGetErrorStr());

            throw new TJException(error);
        }
Exemple #2
0
        /// <summary>
        /// Retrieves last error from underlying turbo-jpeg library and throws exception.</summary>
        /// <exception cref="TJException"> Throws if low level turbo jpeg function fails. </exception>
        public static void GetErrorAndThrow()
        {
            var error = TurboJpegImport.TjGetErrorStr();

            throw new TJException(error);
        }