.7文件包含来自GE扫描仪的MRS数据。我想读取其标题,更改其某些字段值(如扫描日期等),并使用已修改的标题保存新的.7文件,其余数据应相同。
代码:
from ctypes import *
import ge_util as utilge
class PfileHeaderLittle(LittleEndianStructure):
"""
Contains the ctypes Structure for a GE P-file rdb header.
Dynamically allocate the ctypes _fields_ list later depending on revision
"""
_pack_ = 1
_fields_ = utilge.get_pfile_hdr_fields(20.0)
hdr = PfileHeaderLittle()
fname = r"P16896.7"
filelike = open(fname, 'rb')
filelike.seek(0)
filelike.readinto(hdr)
print("hdr: ", hdr)
print("hdr: ", type(hdr.rhe_patname))
print("hdr: ", hdr.rhe_patname)
hdr.rhe_patname = b"CHANGE_IT"
print("hdr: ", hdr.rhe_patname)
with open("my_file.7", 'wb') as file:
file.write(hdr)
输出:
hdr: <__main__.PfileHeaderLittle object at 0x0000025F75D09F48>
hdr: <class 'bytes'>
hdr: b'MRS TEST1'
hdr: b'CHANGE_IT'
此代码读取标头,修改一个字段并将其保存回去。但是,其余数据不会保存。我再次读取保存的文件,并确认已修改标头,但是其余数据不在新文件中。 如何保存修改后的标题并保存包含其余数据的新文件?
这里是ge_util
:https://scion.duhs.duke.edu/vespa/project/export/3828/trunk/common/ge_util.py
P16896.7
个文件:https://drive.google.com/open?id=1zqQbOUwlIa1_rv9OAVA0sQfEEaOFsne0
答案 0 :(得分:0)
修改hdr
后,请按len(bytes(hdr))
查找其字节长度。使用seek
到该位置以及read()
文件的其余部分。现在,将其与新标题连接起来,并保存一个新文件:
filelike.seek(len(bytes(hdr)))
b = filelike.read()
c = bytes(hdr)+b
file = open('New_File.7', 'wb')
file.write(c)
file.close()