mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
2aa471bc5f
use OpenImage method override to decode image.
86 lines
3.3 KiB
C#
86 lines
3.3 KiB
C#
//! \file ImageBMP.cs
|
|
//! \date Wed Mar 16 01:08:47 2016
|
|
//! \brief Emon Engine compressed images.
|
|
//
|
|
// Copyright (C) 2016-2017 by morkt
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to
|
|
// deal in the Software without restriction, including without limitation the
|
|
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
// sell copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
// IN THE SOFTWARE.
|
|
//
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using GameRes.Compression;
|
|
|
|
namespace GameRes.Formats.EmonEngine
|
|
{
|
|
internal class EmMetaData : ImageMetaData
|
|
{
|
|
public int Colors;
|
|
public int Stride;
|
|
public int LzssFrameSize;
|
|
public int LzssInitPos;
|
|
public int DataOffset;
|
|
}
|
|
|
|
internal class EmeImageDecoder : BinaryImageDecoder
|
|
{
|
|
public EmeImageDecoder (IBinaryStream input, EmMetaData info) : base (input, info)
|
|
{
|
|
}
|
|
|
|
protected override ImageData GetImageData ()
|
|
{
|
|
var meta = (EmMetaData)Info;
|
|
m_input.Position = meta.DataOffset;
|
|
BitmapPalette palette = null;
|
|
if (meta.Colors != 0)
|
|
palette = ImageFormat.ReadPalette (m_input.AsStream, Math.Max (meta.Colors, 3), PaletteFormat.RgbX);
|
|
var pixels = new byte[meta.Stride * (int)meta.Height];
|
|
if (meta.LzssFrameSize != 0)
|
|
{
|
|
using (var lzss = new LzssStream (m_input.AsStream, LzssMode.Decompress, true))
|
|
{
|
|
lzss.Config.FrameSize = meta.LzssFrameSize;
|
|
lzss.Config.FrameInitPos = meta.LzssInitPos;
|
|
if (pixels.Length != lzss.Read (pixels, 0, pixels.Length))
|
|
throw new EndOfStreamException();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (pixels.Length != m_input.Read (pixels, 0, pixels.Length))
|
|
throw new EndOfStreamException();
|
|
}
|
|
if (7 == meta.BPP)
|
|
return ImageData.Create (Info, PixelFormats.Gray8, palette, pixels, meta.Stride);
|
|
|
|
PixelFormat format;
|
|
if (32 == meta.BPP)
|
|
format = PixelFormats.Bgr32;
|
|
else if (24 == meta.BPP)
|
|
format = PixelFormats.Bgr24;
|
|
else
|
|
format = PixelFormats.Indexed8;
|
|
return ImageData.CreateFlipped (Info, format, palette, pixels, meta.Stride);
|
|
}
|
|
}
|
|
}
|