mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
(IResource.CanWrite): new property.
(ArchiveFormat.CanCreate): renamed to CanWrite.
This commit is contained in:
@@ -36,9 +36,10 @@ namespace GameRes
|
||||
[Export(typeof(ImageFormat))]
|
||||
public class PngFormat : ImageFormat
|
||||
{
|
||||
public override string Tag { get { return "PNG"; } }
|
||||
public override string Tag { get { return "PNG"; } }
|
||||
public override string Description { get { return "Portable Network Graphics image"; } }
|
||||
public override uint Signature { get { return 0x474e5089; } }
|
||||
public override uint Signature { get { return 0x474e5089; } }
|
||||
public override bool CanWrite { get { return true; } }
|
||||
|
||||
public override ImageData Read (Stream file, ImageMetaData info)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user