Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 bool OutputUnicode = true;
24 // Input and output filenames entered in command line
25 int main(int argc, char *argv[])
27 cout << "\nFNTTRAN V";
28 cout << KFnttranVersion << "\n";
29 cout << "Copyright (c) 1998-2005 Symbian Software Ltd.\n";
33 cout << "Usage: FNTTRAN srcfile [srcfile2 ...] destfile\n";
34 cout << "where srcfile is the file containing typeface information,\n";
35 cout << "and the font bitmaps, and destfile is the font store file.\n";
41 for (int i = 1; i < (argc - 1); i++)
43 if (!reader.Read(argv[i]))
45 cerr << "Problem encountered in file " << argv[i] << "\n";
49 if (!reader.Store(argv[argc-1]))
51 cerr << "Problem writing font file " << argv[argc - 1] << "\n";
54 cout << argv[argc - 1] << " created\n";