mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 05:35:34 +08:00
missing BinaryStream update.
This commit is contained in:
parent
364049f72a
commit
31e420c094
@ -44,7 +44,7 @@ namespace GARbro
|
||||
|
||||
void PrintMetaData (string filename)
|
||||
{
|
||||
using (var file = File.Open (filename, FileMode.Open, FileAccess.Read))
|
||||
using (var file = BinaryStream.FromFile (filename))
|
||||
{
|
||||
var format = ImageFormat.FindFormat (file);
|
||||
if (null == format)
|
||||
@ -60,7 +60,7 @@ namespace GARbro
|
||||
void ConvertFile (string filename, ImageFormat format)
|
||||
{
|
||||
ImageData image;
|
||||
using (var file = File.Open (filename, FileMode.Open, FileAccess.Read))
|
||||
using (var file = BinaryStream.FromFile (filename))
|
||||
{
|
||||
image = ImageFormat.Read (file);
|
||||
if (null == image)
|
||||
|
Loading…
Reference in New Issue
Block a user