swf文件转换为exe文件 (50分)

  • 主题发起人 主题发起人 wrl_001
  • 开始时间 开始时间
W

wrl_001

Unregistered / Unconfirmed
GUEST, unregistred user!
如何实现将swf文件转换为exe文件啊???
 
还有如何将exe文件恢复成swf文件呢?

分数不够再加
 
查找swf文件头说明的文章
 
原来曾有人在论坛上提供了将exe文件恢复成swf文件的,反过来的,你再找找看吧
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Edit1: TEdit;
Edit2: TEdit;
Button1: TButton;
Button2: TButton;
OpenDialog1: TOpenDialog;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var str: string;
begin
opendialog1.Execute;
str := Copy(opendialog1.FileName, 1, Pos('.', opendialog1.FileName) - 1);

edit1.Text := opendialog1.FileName;
edit2.Text := str + '.swf';
end;

procedure TForm1.Button2Click(Sender: TObject);
var
SourceStream, DestinyStream: TFileStream;
SwfFileSize: Cardinal;
begin
SourceStream := TFileStream.Create(edit1.Text, fmOpenRead or fmShareExclusive);
try
sourcestream.Seek(-2 * sizeof(integer), sofromend);
sourcestream.ReadBuffer(swffilesize, sizeof(integer));
if swffilesize = $FA123456 then
begin
sourcestream.ReadBuffer(swffilesize, sizeof(swffilesize));
sourcestream.Seek(-swffilesize - 2 * sizeof(integer), sofromend);
destinystream := tfilestream.Create(edit2.Text, fmcreate);
try
destinystream.CopyFrom(sourcestream, swffilesize);
showmessage('file has been converted successfully.');
finally
destinystream.Free;
end;
end
else
showmessage('unknown type of executable flash files.');
finally
sourcestream.Free;
end;
end;
end.
 
谢谢app2001, ,因为不能上网所以这么久了才给分
研究了一下可以将swf文件转为exe文件的程序有这么一个功能就是在启动的时候会读取文件倒数第3,4个字节,是否是$FA123456,如果是则读取后面两个字节的swf文件长度,然后播放,
制作exe文件就是把swf文件加到自己的文件尾然后加上16进制的FA123456和文件长度,存为一个文件就可以了,不过这样子不是很实用,只能是一个思路,呵呵
 
多人接受答案了。
 
后退
顶部