我有一个要求,我必须在经典ASP
中的图像上使用base64编码所以我在C#项目中创建了一个非常简单的类项目,并尝试使COM可见,我已经阅读了有关stackoverflow的所有指南和各种其他问题,但我仍然无法获得vbscript来创建对象
程序集被标记为ComVisible,并且输出被标记为注册COM interop,我的类来源:
namespace Crypto
{
[ComVisible(true)]
[Guid("ad491fe9-ade0-46a1-bae0-d407a987a9e9"),ClassInterface(ClassInterfaceType.None)]
public class Base64
{
public Base64() {
//default com exposable constructor
}
public string Base64Encode(string filePath) {
if (!File.Exists(filePath)) return "";
using (Image image = Image.FromFile(filePath))
{
using (MemoryStream m = new MemoryStream())
{
image.Save(m, image.RawFormat);
byte[] imageBytes = m.ToArray();
// Convert byte[] to Base64 String
string base64String = Convert.ToBase64String(imageBytes);
return base64String;
}
}
}
}
}
构建之后,我将其注册为cominterop,并使用
输入GACregasm *<file path>* /codebase /tlb
gacutil -i *<file path>*
一切都成功注册
当我从测试经典asp页面调用时
set obj = CreateObject("Crypto.Base64")
我得到了
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object: 'Crypto.Base64'
我在大约7 - 8年前在.Net 2.0中与ComInterop合作,一切顺利,我无法理解这种情况下的错误
在我的开发机器上,它的windows 10 pro 64位,目标编译是4.6.2 Framework