save.pl
上传用户:wzkunzhan
上传日期:2022-04-23
资源大小:2618k
文件大小:1k
- # File: save.pl
- #
- # Modified OpenPhone based Voice Evaluation Tool (MOBVET) Version 0.1
- # --------------------------------------------------------------------
- # Voice Over IP Laboratory (http://www.voip.nce.ufrj.br)
- # Federal University of Rio de Janeiro
- # Copyright (c) 2002-2004 UFRJ (Federal University of Rio de Janeiro).
- # The contents of this file are subject to the Mozilla Public License
- # Version 1.0 (the "License"); you may not use this file except in
- # compliance with the License. You may obtain a copy of the License at
- # http://www.mozilla.org/MPL/
- sub save_chart
- {
- my $chart = shift or die "Need a chart!";
- my $name = shift or die "Need a name!";
- local(*OUT);
- my $ext = $chart->export_format;
- open(OUT, ">$name.$ext") or
- die "Cannot open $name.$ext for write: $!";
- binmode OUT;
- print OUT $chart->gd->$ext();
- close OUT;
- }
- 1;