GARbro-mirror/GameRes/ImageJPEG.cs

99 lines
3.8 KiB
C#
Raw Normal View History

2014-07-22 03:26:28 +08:00
//! \file ImageJPEG.cs
//! \date Thu Jul 17 15:56:27 2014
//! \brief JPEG image implementation.
//
// Copyright (C) 2014 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.
//
2014-07-22 03:26:28 +08:00
using System;
using System.IO;
using System.Text;
using System.ComponentModel.Composition;
using System.Windows.Media.Imaging;
using GameRes.Utility;
namespace GameRes
{
[Export(typeof(ImageFormat))]
public class JpegFormat : ImageFormat
{
public override string Tag { get { return "JPEG"; } }
2014-07-22 03:26:28 +08:00
public override string Description { get { return "JPEG image file format"; } }
public override uint Signature { get { return 0; } }
public override bool CanWrite { get { return true; } }
2014-07-22 03:26:28 +08:00
public int Quality { get; set; }
public JpegFormat ()
{
Extensions = new string[] { "jpg", "jpeg" };
2015-05-06 06:49:07 +08:00
Signatures = new uint[] { 0xe0ffd8ffu, 0 };
2016-10-15 13:34:46 +08:00
Quality = 100;
2014-07-22 03:26:28 +08:00
}
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-10-15 13:34:46 +08:00
var decoder = new JpegBitmapDecoder (file.AsStream,
2014-07-22 03:26:28 +08:00
BitmapCreateOptions.None, BitmapCacheOption.OnLoad);
var frame = decoder.Frames[0];
frame.Freeze();
return new ImageData (frame, info);
}
public override void Write (Stream file, ImageData image)
{
var encoder = new JpegBitmapEncoder();
encoder.QualityLevel = Quality;
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
public override ImageMetaData ReadMetaData (IBinaryStream file)
2014-07-22 03:26:28 +08:00
{
2016-10-15 13:34:46 +08:00
if (0xFF != file.ReadByte() || 0xD8 != file.ReadByte())
2014-07-22 03:26:28 +08:00
return null;
2016-10-15 13:34:46 +08:00
while (-1 != file.PeekByte())
2014-07-22 03:26:28 +08:00
{
2016-10-15 13:34:46 +08:00
ushort marker = Binary.BigEndian (file.ReadUInt16());
if ((marker & 0xff00) != 0xff00)
break;
int length = Binary.BigEndian (file.ReadUInt16());
if ((marker & 0x00f0) == 0xc0 && marker != 0xffc4)
2014-07-22 03:26:28 +08:00
{
2016-10-15 13:34:46 +08:00
if (length < 8)
2014-07-22 03:26:28 +08:00
break;
2016-10-15 13:34:46 +08:00
int bits = file.ReadByte();
uint height = Binary.BigEndian (file.ReadUInt16());
uint width = Binary.BigEndian (file.ReadUInt16());
int components = file.ReadByte();
return new ImageMetaData {
Width = width,
Height = height,
BPP = bits * components,
};
2014-07-22 03:26:28 +08:00
}
2016-10-15 13:34:46 +08:00
file.Seek (length-2, SeekOrigin.Current);
2014-07-22 03:26:28 +08:00
}
2016-10-15 13:34:46 +08:00
return null;
2014-07-22 03:26:28 +08:00
}
}
}