Changing the header in a file which include binary content

10 views (last 30 days)
My ply file contains an ascii header and the rest of the mesh data content is written as binary. I would like to change lines 10, 11, 12 in the header with my specific content. I do not want to touch to the binary data which contains the mesh data. When I use the script below, my mesh data becomes like a flat surface instead of a 3D surface curvature. Why am I changing the rest of the content? How can I change the three header lines, without damaging the rest of the file?
A = regexp( fileread(ply), '\n', 'split');
A{10} = sprintf('%s',"header line 1");
A{11} = sprintf('%s',"header line 2");
A{12} = sprintf('%s',"header line 3");
fid = fopen(ply, 'wb');
fprintf(fid, A{:});
fclose(fid);

Accepted Answer

Guillaume
Guillaume on 11 Apr 2018
For a start, you never put back all the \n characters that you've removed.
fprintf(fid, strjoin(A, '\n'));
may work. However, you're playing with fire here as you're interpreting binary data as text. There's no guarantee that the binary data will survive the round trip unaltered (e.g. the binary data forms an invalid character that could be ignored by regex).
And of course, it's possible that he binary data includes offset indicating where to find other binary data into the file, if you change the length of the header the offsets will point to the wrong location.
It's very unusual to have a file that's text and binary. It may be that some of the binary content is some textual data, but it should still be interpreted as binary. Usually text in a binary file is either fixed length, prefixed by binary data indicating how long the text is, or \0 terminated.
  6 Comments
Beril Sirmacek
Beril Sirmacek on 12 Apr 2018
I cannot thank you enough! This does the work! Except a tiny typo at the second line :)
text = [];
Very great thanks!

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 11 Apr 2018
When you split, the newlines are removed, and you are not putting them back.
fprintf(fid, '%s\n', A{1:end-1});
fprintf(fid, '%s', A{end}); %do not add extra \n at the end
but splitting the binary content is kinda dicey.
I would recommend that you instead switch to reading a limited number of lines using fgetl(), and write out the revised versions as required, and then fread() to end of file and fwrite() it to the new file.
  1 Comment
Beril Sirmacek
Beril Sirmacek on 11 Apr 2018
Thank you very much for your quick response. I have immediately tried out but I still have the same result. The mesh values are changed. The 3D structure becomes flat.

Sign in to comment.

Categories

Find more on Data Import and Export in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!