2014-07-22 03:26:28 +08:00
|
|
|
//! \file ImageBMP.cs
|
|
|
|
//! \date Wed Jul 16 18:06:47 2014
|
|
|
|
//! \brief BMP image implementation.
|
|
|
|
//
|
2016-04-25 22:02:01 +08:00
|
|
|
// Copyright (C) 2014-2016 by morkt
|
2014-07-28 04:50:18 +08:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2014-07-22 03:26:28 +08:00
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.ComponentModel.Composition;
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
using GameRes.Utility;
|
|
|
|
using System.Windows.Media;
|
2016-08-02 20:38:42 +08:00
|
|
|
using System.Collections.Generic;
|
2014-07-22 03:26:28 +08:00
|
|
|
|
|
|
|
namespace GameRes
|
|
|
|
{
|
2016-04-25 22:02:01 +08:00
|
|
|
public class BmpMetaData : ImageMetaData
|
|
|
|
{
|
|
|
|
public uint ImageLength;
|
|
|
|
public uint HeaderLength;
|
|
|
|
}
|
|
|
|
|
2016-08-02 20:38:42 +08:00
|
|
|
public interface IBmpExtension
|
|
|
|
{
|
2016-10-15 13:34:46 +08:00
|
|
|
ImageData Read (IBinaryStream file, BmpMetaData info);
|
2016-08-02 20:38:42 +08:00
|
|
|
}
|
|
|
|
|
2014-07-22 03:26:28 +08:00
|
|
|
[Export(typeof(ImageFormat))]
|
|
|
|
public class BmpFormat : ImageFormat
|
|
|
|
{
|
2016-08-02 20:38:42 +08:00
|
|
|
public override string Tag { get { return "BMP"; } }
|
2014-07-22 03:26:28 +08:00
|
|
|
public override string Description { get { return "Windows device independent bitmap"; } }
|
2016-08-02 20:38:42 +08:00
|
|
|
public override uint Signature { get { return 0; } }
|
2016-10-11 04:05:22 +08:00
|
|
|
public override bool CanWrite { get { return true; } }
|
2016-08-02 20:38:42 +08:00
|
|
|
|
|
|
|
#pragma warning disable 649
|
|
|
|
[ImportMany(typeof(IBmpExtension))]
|
|
|
|
private IEnumerable<IBmpExtension> m_extensions;
|
|
|
|
#pragma warning restore 649
|
2014-07-22 03:26:28 +08:00
|
|
|
|
2016-09-08 00:25:26 +08:00
|
|
|
bool EnableExtensions = true;
|
|
|
|
|
2016-10-15 13:34:46 +08:00
|
|
|
public override ImageData Read (IBinaryStream file, ImageMetaData info)
|
2014-07-22 03:26:28 +08:00
|
|
|
{
|
2016-04-25 22:02:01 +08:00
|
|
|
var bmp_info = info as BmpMetaData;
|
2016-10-15 16:21:12 +08:00
|
|
|
if (bmp_info != null && EnableExtensions && file.AsStream.CanSeek)
|
2016-04-25 22:02:01 +08:00
|
|
|
{
|
2016-08-02 20:38:42 +08:00
|
|
|
foreach (var ext in m_extensions)
|
2016-04-25 22:02:01 +08:00
|
|
|
{
|
2016-08-02 20:38:42 +08:00
|
|
|
try
|
2016-07-26 11:05:02 +08:00
|
|
|
{
|
2016-08-02 20:38:42 +08:00
|
|
|
var image = ext.Read (file, bmp_info);
|
|
|
|
if (null != image)
|
|
|
|
return image;
|
2016-07-26 11:05:02 +08:00
|
|
|
}
|
2016-08-02 20:38:42 +08:00
|
|
|
catch (System.Exception X)
|
2016-07-26 11:05:02 +08:00
|
|
|
{
|
2016-08-02 20:38:42 +08:00
|
|
|
System.Diagnostics.Trace.WriteLine (X.Message, ext.ToString());
|
2016-07-26 11:05:02 +08:00
|
|
|
}
|
2016-10-15 13:34:46 +08:00
|
|
|
file.Position = 0;
|
2016-04-25 22:02:01 +08:00
|
|
|
}
|
|
|
|
}
|
2016-10-15 13:34:46 +08:00
|
|
|
var decoder = new BmpBitmapDecoder (file.AsStream,
|
2014-07-22 03:26:28 +08:00
|
|
|
BitmapCreateOptions.None, BitmapCacheOption.OnLoad);
|
|
|
|
BitmapSource frame = decoder.Frames.First();
|
|
|
|
frame.Freeze();
|
|
|
|
return new ImageData (frame, info);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Write (Stream file, ImageData image)
|
|
|
|
{
|
|
|
|
var encoder = new BmpBitmapEncoder();
|
2016-06-18 15:02:33 +08:00
|
|
|
encoder.Frames.Add (BitmapFrame.Create (image.Bitmap, null, null, null));
|
2014-07-22 03:26:28 +08:00
|
|
|
encoder.Save (file);
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:34:46 +08:00
|
|
|
void SkipBytes (IBinaryStream file, uint num)
|
2014-07-22 03:26:28 +08:00
|
|
|
{
|
2016-10-15 13:34:46 +08:00
|
|
|
if (file.AsStream.CanSeek)
|
|
|
|
file.Seek (num, SeekOrigin.Current);
|
2014-07-22 03:26:28 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for (int i = 0; i < num / 4; ++i)
|
|
|
|
file.ReadInt32();
|
|
|
|
for (int i = 0; i < num % 4; ++i)
|
|
|
|
file.ReadByte();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:34:46 +08:00
|
|
|
public override ImageMetaData ReadMetaData (IBinaryStream file)
|
2014-07-22 03:26:28 +08:00
|
|
|
{
|
2016-10-15 13:34:46 +08:00
|
|
|
int c1 = file.ReadByte();
|
|
|
|
int c2 = file.ReadByte();
|
2016-08-18 18:59:17 +08:00
|
|
|
if ('B' != c1 || 'M' != c2)
|
2014-07-22 03:26:28 +08:00
|
|
|
return null;
|
2016-10-15 13:34:46 +08:00
|
|
|
uint size = file.ReadUInt32();
|
2017-03-29 12:51:53 +08:00
|
|
|
SkipBytes (file, 8);
|
|
|
|
uint header_size = file.ReadUInt32();
|
|
|
|
if (size < 14+header_size)
|
2014-07-22 03:26:28 +08:00
|
|
|
{
|
2016-10-15 13:34:46 +08:00
|
|
|
// some otherwise valid bitmaps have size field set to zero
|
|
|
|
if (size != 0 || !file.AsStream.CanSeek)
|
2014-07-22 03:26:28 +08:00
|
|
|
return null;
|
2016-10-15 13:34:46 +08:00
|
|
|
size = (uint)file.Length;
|
2014-07-22 03:26:28 +08:00
|
|
|
}
|
2017-03-29 12:51:53 +08:00
|
|
|
uint width, height;
|
|
|
|
if (0xC == header_size)
|
|
|
|
{
|
|
|
|
width = file.ReadUInt16();
|
|
|
|
height = file.ReadUInt16();
|
|
|
|
}
|
|
|
|
else if (header_size < 40 || size-14 < header_size)
|
|
|
|
{
|
2016-10-15 13:34:46 +08:00
|
|
|
return null;
|
2017-03-29 12:51:53 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
width = file.ReadUInt32();
|
|
|
|
height = file.ReadUInt32();
|
|
|
|
}
|
2016-10-15 13:34:46 +08:00
|
|
|
file.ReadInt16();
|
|
|
|
int bpp = file.ReadInt16();
|
|
|
|
return new BmpMetaData {
|
|
|
|
Width = width,
|
|
|
|
Height = height,
|
|
|
|
OffsetX = 0,
|
|
|
|
OffsetY = 0,
|
|
|
|
BPP = bpp,
|
|
|
|
ImageLength = size,
|
|
|
|
HeaderLength = header_size + 14,
|
|
|
|
};
|
2014-07-22 03:26:28 +08:00
|
|
|
}
|
|
|
|
}
|
2016-08-02 20:38:42 +08:00
|
|
|
|
|
|
|
[Export(typeof(IBmpExtension))]
|
|
|
|
public class BitmapWithAlpha : IBmpExtension
|
|
|
|
{
|
2016-10-15 13:34:46 +08:00
|
|
|
public ImageData Read (IBinaryStream file, BmpMetaData info)
|
2016-08-02 20:38:42 +08:00
|
|
|
{
|
2016-10-15 13:34:46 +08:00
|
|
|
if (file.AsStream.CanSeek)
|
2016-08-02 20:38:42 +08:00
|
|
|
{
|
|
|
|
var width_x_height = info.Width * info.Height;
|
|
|
|
uint bmp_length = width_x_height * (uint)info.BPP/8 + info.HeaderLength;
|
|
|
|
if (bmp_length == info.ImageLength || bmp_length+2 == info.ImageLength)
|
|
|
|
{
|
|
|
|
if (0x20 == info.BPP)
|
|
|
|
{
|
|
|
|
return ReadBitmapBGRA (file, info);
|
|
|
|
}
|
|
|
|
else if (0x18 == info.BPP && (info.ImageLength + width_x_height) == file.Length)
|
|
|
|
{
|
|
|
|
return ReadBitmapWithAlpha (file, info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:34:46 +08:00
|
|
|
private ImageData ReadBitmapWithAlpha (IBinaryStream file, BmpMetaData info)
|
2016-08-02 20:38:42 +08:00
|
|
|
{
|
|
|
|
file.Position = info.ImageLength;
|
|
|
|
var alpha = new byte[info.Width*info.Height];
|
|
|
|
if (alpha.Length != file.Read (alpha, 0, alpha.Length))
|
|
|
|
throw new EndOfStreamException();
|
|
|
|
|
|
|
|
file.Position = info.HeaderLength;
|
|
|
|
int dst_stride = (int)info.Width * 4;
|
|
|
|
var pixels = new byte[(int)info.Height * dst_stride];
|
|
|
|
int a_src = 0;
|
|
|
|
for (int y = (int)info.Height-1; y >= 0; --y)
|
|
|
|
{
|
|
|
|
int dst = dst_stride * y;
|
|
|
|
for (int x = 0; x < dst_stride; x += 4)
|
|
|
|
{
|
|
|
|
file.Read (pixels, dst+x, 3);
|
|
|
|
pixels[dst+x+3] = alpha[a_src++];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ImageData.Create (info, PixelFormats.Bgra32, null, pixels, dst_stride);
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:34:46 +08:00
|
|
|
private ImageData ReadBitmapBGRA (IBinaryStream file, BmpMetaData info)
|
2016-08-02 20:38:42 +08:00
|
|
|
{
|
|
|
|
file.Position = info.HeaderLength;
|
|
|
|
int stride = (int)info.Width * 4;
|
|
|
|
var pixels = new byte[(int)info.Height * stride];
|
|
|
|
bool has_alpha = false;
|
|
|
|
for (int y = (int)info.Height-1; y >= 0; --y)
|
|
|
|
{
|
|
|
|
int dst = stride * y;
|
|
|
|
file.Read (pixels, dst, stride);
|
|
|
|
for (int x = 3; !has_alpha && x < stride; x += 4)
|
|
|
|
has_alpha = pixels[dst+x] != 0;
|
|
|
|
}
|
|
|
|
PixelFormat format = has_alpha ? PixelFormats.Bgra32 : PixelFormats.Bgr32;
|
|
|
|
return ImageData.Create (info, format, null, pixels, stride);
|
|
|
|
}
|
|
|
|
}
|
2014-07-22 03:26:28 +08:00
|
|
|
}
|