Browse Source

added ability to write data to file

sbarman 14 years ago
parent
commit
c67037e268
  1. 8
      fonts.js
  2. 4
      utils/fonts_utils.js

8
fonts.js

@ -384,6 +384,14 @@ var Font = (function Font() { @@ -384,6 +384,14 @@ var Font = (function Font() {
break;
}
var fileArr = [];
file.reset();
for (var i = 0, ii = file.length; i < ii; ++i)
fileArr.push(file[i]);
writeToFile(data, '/tmp/' + name + '_orig');
writeToFile(fileArr, '/tmp/' + name + '_new');
this.data = data;
this.textMatrix = properties.textMatrix || IDENTITY_MATRIX;
this.type = properties.type;

4
utils/fonts_utils.js

@ -1,8 +1,6 @@ @@ -1,8 +1,6 @@
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
'use strict';
/**
* The Type2 reader code below is only used for debugging purpose since Type2
* is only a CharString format and is never used directly as a Font file.
@ -391,7 +389,7 @@ function writeToFile(aBytes, aFilePath) { @@ -391,7 +389,7 @@ function writeToFile(aBytes, aFilePath) {
var stream = Cc['@mozilla.org/network/file-output-stream;1']
.createInstance(Ci.nsIFileOutputStream);
stream.init(file, 0x04 | 0x08 | 0x20, 0x180, 0);
stream.init(file, 0x04 | 0x08 | 0x20, 0666, 0);
var bos = Cc['@mozilla.org/binaryoutputstream;1']
.createInstance(Ci.nsIBinaryOutputStream);

Loading…
Cancel
Save