【发布时间】:2011-08-27 06:18:35
【问题描述】:
我正在尝试从 COM (jscript) 访问 .Net 库 (The Image Resizer)。
我已经尝试过 IDispatch 和类接口生成,以及相关类的 [ClassInterface(ClassInterfaceType.AutoDual)]。
有一个方法有 3 个重载:
Bitmap Build(object, ResizeSettings settings)
void Build(object source, object dest, string settings)
void Build(object source, object dest, ResizeSettings settings)
打电话
Build("file",s); //works
以下都生成“错误数量的参数或无效的属性分配”(JScript 运行时错误)
Build("file","file", s)
Build("file","file","settings
我找不到重载不应该通过互操作工作的任何原因,尤其是当 arg 计数不同时。 我错过了什么吗?
更新:这是方法定义的完整代码。第二个重载是不可访问的。不仅仅是这些方法——在每个重载的方法中,我似乎只能访问第一个重载。这是一个未记录的 COM 错误/设计缺陷吗?
/// <summary>
/// Provides methods for generating resized images, and for reading and writing them to disk.
/// Use ImageBuilder.Current to get the current instance (as configured in the application configuration), or use ImageBuilder.Current.Create() to control which extensions are used.
/// </summary>
public class ImageBuilder : AbstractImageProcessor, IQuerystringPlugin
{
/// <summary>
/// Resizes and processes the specified source image and returns a bitmap of the result.
/// This method assumes that transparency will be supported in the final output format, and therefore does not apply a matte color. Use &bgcolor to specify a background color
/// if you use this method with a non-transparent format such as Jpeg.
/// </summary>
/// <param name="source">May be an instance of string (a physical path), VirtualFile, IVirtualBitmapFile, HttpPostedFile, Bitmap, Image, or Stream.</param>
/// <param name="settings">Resizing and processing command to apply to the.</param>
public virtual Bitmap Build(object source, ResizeSettings settings) {
BitmapHolder bh = new BitmapHolder();
Build(source, bh, settings);
return bh.bitmap;
}
/// <summary>
/// Resizes and processes the specified source image and stores the encoded result in the specified destination.
/// </summary>
/// <param name="source">May be an instance of string (a physical path or app-relative virtual path), VirtualFile, IVirtualBitmapFile, HttpPostedFile, Bitmap, Image, or Stream. app-relative virtual paths will use the VirtualPathProvider system</param>
/// <param name="dest">May be a physical path (string), or a Stream instance. Does not have to be seekable.</param>
/// <param name="settings">Resizing and processing command to apply to the.</param>
public virtual void Build(object source, object dest, ResizeSettings settings) {
ResizeSettings s = new ResizeSettings(settings);
【问题讨论】:
-
我认为你的 COM 组件的代码(或者至少是接口)在这里更重要......你能发布吗?
-
组件是.NET,调用者是COM。我会添加更多代码。
-
我不明白。 jscript 不是 COM。它可以很容易地调用 COM 组件。如果您希望您的 .NET 组件可以作为 COM 组件访问,您必须为此向您的 .NET 组件添加代码(例如
ClassInterface(ClassInterfaceType.AutoDual)您在问题中所说的)。这使得 .NET 组件成为 COM 服务器。 -
发布您在 .Net 组件上定义 com 接口的代码。它可能有问题。我还记得过去我在 COM 接口中重载方法时遇到了麻烦。您可能想尝试将方法重命名为其他名称并调用它。
标签: javascript interop com-interop typelib