我想问个问题
我 生成的文件是由多个图片组成 主体部分记录着图片的具体参数 比如位于窗口的坐标
当我需要用我 写的程序读取这些图片的时候怎么读取他的坐标点呢?
来电思路 怎么定义主体部分?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
////定义重构文件主体部分即素材信息
namespace filetest
{
public class FileBody
{
private int x;
private int y;
private int div;
private int filetype;
private long filesize;
private byte[] fileio;
/// <summary>
/// 素材的X坐标
/// </summary>
public int X
{
get
{
return x;
}
set
{
x = value;
}
}
/// <summary>
/// 素材的 Y 坐标
/// </summary>
public int Y
{
get
{
return y;
}
set
{
y = value;
}
}
/// <summary>
/// 记录图层位置
/// </summary>
public int DIV
{
get
{
return div;
}
set
{
div = value;
}
}
/// <summary>
/// 记录文件类型
/// </summary>
public int FileType
{
get
{
return filetype;
}
set
{
filetype = value;
}
}
/// <summary>
/// 记录文件的字节数
/// </summary>
public byte[] FileIO
{
get
{
return fileio;
}
set
{
fileio = value;
}
}
}
}
文件主体由多个文件读取 我解析文件的时候要把素材解压出来 这个每个文件的偏移怎么取?
不用序列化 因为我要读取相关配置信息 配置信息在文件头