| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- /////////////////////////////////////////////////////////////////////////////////
- //
- // Photoshop PSD FileType Plugin for Paint.NET
- // http://psdplugin.codeplex.com/
- //
- // This software is provided under the MIT License:
- // Copyright (c) 2006-2007 Frank Blumenberg
- // Copyright (c) 2010-2017 Tao Yue
- //
- // See LICENSE.txt for complete licensing and attribution information.
- //
- /////////////////////////////////////////////////////////////////////////////////
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Drawing;
- using System.IO;
- using System.Linq;
- using System.Text;
- namespace PhotoshopFile
- {
- public static class Util
- {
- [DebuggerDisplay("Top = {Top}, Bottom = {Bottom}, Left = {Left}, Right = {Right}")]
- public struct RectanglePosition
- {
- public int Top { get; set; }
- public int Bottom { get; set; }
- public int Left { get; set; }
- public int Right { get; set; }
- }
- public static Rectangle IntersectWith(
- this Rectangle thisRect, Rectangle rect)
- {
- thisRect.Intersect(rect);
- return thisRect;
- }
- ///////////////////////////////////////////////////////////////////////////
- /// <summary>
- /// Fills a buffer with a byte value.
- /// </summary>
- unsafe static public void Fill(byte* ptr, byte* ptrEnd, byte value)
- {
- while (ptr < ptrEnd)
- {
- *ptr = value;
- ptr++;
- }
- }
- unsafe static public void Invert(byte* ptr, byte* ptrEnd)
- {
- while (ptr < ptrEnd)
- {
- *ptr = (byte)(*ptr ^ 0xff);
- ptr++;
- }
- }
- ///////////////////////////////////////////////////////////////////////////
- /// <summary>
- /// Reverses the endianness of a 2-byte word.
- /// </summary>
- unsafe static public void SwapBytes2(byte* ptr)
- {
- byte byte0 = *ptr;
- *ptr = *(ptr + 1);
- *(ptr + 1) = byte0;
- }
- ///////////////////////////////////////////////////////////////////////////
- /// <summary>
- /// Reverses the endianness of a 4-byte word.
- /// </summary>
- unsafe static public void SwapBytes4(byte* ptr)
- {
- byte byte0 = *ptr;
- byte byte1 = *(ptr + 1);
- *ptr = *(ptr + 3);
- *(ptr + 1) = *(ptr + 2);
- *(ptr + 2) = byte1;
- *(ptr + 3) = byte0;
- }
- /// <summary>
- /// Reverses the endianness of a word of arbitrary length.
- /// </summary>
- unsafe static public void SwapBytes(byte* ptr, int nLength)
- {
- for (long i = 0; i < nLength / 2; ++i)
- {
- byte t = *(ptr + i);
- *(ptr + i) = *(ptr + nLength - i - 1);
- *(ptr + nLength - i - 1) = t;
- }
- }
- ///////////////////////////////////////////////////////////////////////////
- public static void SwapByteArray(int bitDepth,
- byte[] byteArray, int startIdx, int count)
- {
- switch (bitDepth)
- {
- case 1:
- case 8:
- break;
- case 16:
- SwapByteArray2(byteArray, startIdx, count);
- break;
- case 32:
- SwapByteArray4(byteArray, startIdx, count);
- break;
- default:
- throw new Exception(
- "Byte-swapping implemented only for 16-bit and 32-bit depths.");
- }
- }
- /// <summary>
- /// Reverses the endianness of 2-byte words in a byte array.
- /// </summary>
- /// <param name="byteArray">Byte array containing the sequence on which to swap endianness</param>
- /// <param name="startIdx">Byte index of the first word to swap</param>
- /// <param name="count">Number of words to swap</param>
- public static void SwapByteArray2(byte[] byteArray, int startIdx, int count)
- {
- int endIdx = startIdx + count * 2;
- if (byteArray.Length < endIdx)
- throw new IndexOutOfRangeException();
- unsafe
- {
- fixed (byte* arrayPtr = &byteArray[0])
- {
- byte* ptr = arrayPtr + startIdx;
- byte* endPtr = arrayPtr + endIdx;
- while (ptr < endPtr)
- {
- SwapBytes2(ptr);
- ptr += 2;
- }
- }
- }
- }
- /// <summary>
- /// Reverses the endianness of 4-byte words in a byte array.
- /// </summary>
- /// <param name="byteArray">Byte array containing the sequence on which to swap endianness</param>
- /// <param name="startIdx">Byte index of the first word to swap</param>
- /// <param name="count">Number of words to swap</param>
- public static void SwapByteArray4(byte[] byteArray, int startIdx, int count)
- {
- int endIdx = startIdx + count * 4;
- if (byteArray.Length < endIdx)
- throw new IndexOutOfRangeException();
- unsafe
- {
- fixed (byte* arrayPtr = &byteArray[0])
- {
- byte* ptr = arrayPtr + startIdx;
- byte* endPtr = arrayPtr + endIdx;
- while (ptr < endPtr)
- {
- SwapBytes4(ptr);
- ptr += 4;
- }
- }
- }
- }
- ///////////////////////////////////////////////////////////////////////////
- /// <summary>
- /// Calculates the number of bytes required to store a row of an image
- /// with the specified bit depth.
- /// </summary>
- /// <param name="size">The size of the image in pixels.</param>
- /// <param name="bitDepth">The bit depth of the image.</param>
- /// <returns>The number of bytes needed to store a row of the image.</returns>
- public static int BytesPerRow(Size size, int bitDepth)
- {
- switch (bitDepth)
- {
- case 1:
- return (size.Width + 7) / 8;
- default:
- return size.Width * BytesFromBitDepth(bitDepth);
- }
- }
- /// <summary>
- /// Round the integer to a multiple.
- /// </summary>
- public static int RoundUp(int value, int multiple)
- {
- if (value == 0)
- return 0;
- if (Math.Sign(value) != Math.Sign(multiple))
- {
- throw new ArgumentException(
- $"{nameof(value)} and {nameof(multiple)} cannot have opposite signs.");
- }
- var remainder = value % multiple;
- if (remainder > 0)
- {
- value += (multiple - remainder);
- }
- return value;
- }
- /// <summary>
- /// Get number of bytes required to pad to the specified multiple.
- /// </summary>
- public static int GetPadding(int length, int padMultiple)
- {
- if ((length < 0) || (padMultiple < 0))
- throw new ArgumentException();
- var remainder = length % padMultiple;
- if (remainder == 0)
- return 0;
- var padding = padMultiple - remainder;
- return padding;
- }
- /// <summary>
- /// Returns the number of bytes needed to store a single pixel of the
- /// specified bit depth.
- /// </summary>
- public static int BytesFromBitDepth(int depth)
- {
- switch (depth)
- {
- case 1:
- case 8:
- return 1;
- case 16:
- return 2;
- case 32:
- return 4;
- default:
- throw new ArgumentException("Invalid bit depth.");
- }
- }
- public static short MinChannelCount(this PsdColorMode colorMode)
- {
- switch (colorMode)
- {
- case PsdColorMode.Bitmap:
- case PsdColorMode.Duotone:
- case PsdColorMode.Grayscale:
- case PsdColorMode.Indexed:
- case PsdColorMode.Multichannel:
- return 1;
- case PsdColorMode.Lab:
- case PsdColorMode.RGB:
- return 3;
- case PsdColorMode.CMYK:
- return 4;
- }
- throw new ArgumentException("Unknown color mode.");
- }
- /// <summary>
- /// Verify that the offset and count will remain within the bounds of the
- /// buffer.
- /// </summary>
- /// <returns>True if in bounds, false if out of bounds.</returns>
- public static bool CheckBufferBounds(byte[] data, int offset, int count)
- {
- if (offset < 0)
- return false;
- if (count < 0)
- return false;
- if (offset + count > data.Length)
- return false;
- return true;
- }
- public static void CheckByteArrayLength(long length)
- {
- if (length < 0)
- {
- throw new Exception("Byte array cannot have a negative length.");
- }
- if (length > 0x7fffffc7)
- {
- throw new OutOfMemoryException(
- "Byte array cannot exceed 2,147,483,591 in length.");
- }
- }
- /// <summary>
- /// Writes a message to the debug console, indicating the current position
- /// in the stream in both decimal and hexadecimal formats.
- /// </summary>
- [Conditional("DEBUG")]
- public static void DebugMessage(Stream stream, string message)
- {
- Debug.WriteLine($"0x{stream.Position:x}, {stream.Position}, {message}");
- }
- }
- /// <summary>
- /// Fixed-point decimal, with 16-bit integer and 16-bit fraction.
- /// </summary>
- public class UFixed16_16
- {
- public UInt16 Integer { get; set; }
- public UInt16 Fraction { get; set; }
- public UFixed16_16(UInt16 integer, UInt16 fraction)
- {
- Integer = integer;
- Fraction = fraction;
- }
- /// <summary>
- /// Split the high and low words of a 32-bit unsigned integer into a
- /// fixed-point number.
- /// </summary>
- public UFixed16_16(UInt32 value)
- {
- Integer = (UInt16)(value >> 16);
- Fraction = (UInt16)(value & 0x0000ffff);
- }
- public UFixed16_16(double value)
- {
- if (value >= 65536.0) throw new OverflowException();
- if (value < 0) throw new OverflowException();
- Integer = (UInt16)value;
- // Round instead of truncate, because doubles may not represent the
- // fraction exactly.
- Fraction = (UInt16)((value - Integer) * 65536 + 0.5);
- }
- public static implicit operator double(UFixed16_16 value)
- {
- return (double)value.Integer + value.Fraction / 65536.0;
- }
- }
-
- }
|