VB资源提取 DIY

Author:zfive5(zhaozidong)
 
由于以前代码管理不当,编程人员在picturebox中直接图片,原因这样最simplen年后图片没了,程序员也没了,现在又想在原图上改改,vc资源编辑器看不着!原因是vb的!
 
现在自立更生--.fmx找了
 
打开
Form1.frm
 
VERSION 5.00
Begin VB.Form Form1
   Caption         =   "Form1"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   StartUpPosition =   3 'Windows Default
   Begin VB.PictureBox Picture1
      Height          =   1575
      Left            =   1200
      Picture         =   "Form1.frx":0000
      ScaleHeight     =   1515
      ScaleWidth      =   2595
      TabIndex        =   0
      Top             =   600
      Width           =   2655
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
 
 
Picture         =   "Form1.frx":0000
打开
form1.frx
 
 VB资源提取 DIY_第1张图片
根据数据长度和之后的二进制就可以得到.bmp文件了
imagelist可能不一样,但原理大同小意!!!
 
 

你可能感兴趣的:(VB资源提取 DIY)