Jump to content

Manifest help (reg free com + imagemagick)


 Share

Recommended Posts

I need to use imagemagick using reg free com. Could anyone with more experience in this area help me create the manefist?

See http://www.autoitscript.com/forum/index.php?showtopic=54110 and

http://www.autoitscript.com/forum/index.php?showtopic=49065

<?xml version="1.0" encoding="utf-8"?>
<assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <assemblyIdentity name="Argon.exe" version="1.0.0.0" type="win32" />
  <file name="ImageMagickObject.dll" asmv2:size="290824">
    <hash xmlns="urn:schemas-microsoft-com:asm.v2">
      <dsig:Transforms>
        <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
      </dsig:Transforms>
      <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
      <dsig:DigestValue>laLl47xfWOFF2f+i0d30PCkHvwQ=</dsig:DigestValue>
    </hash>
    <typelib tlbid="{f8937e53-d444-4e71-9275-35b64210cc3b}" version="1.0" helpdir="" resourceid="0" flags="HASDISKIMAGE" />
    <comClass clsid="{1a671297-fa74-4422-80fa-6c5d8ce4de04}" threadingModel="Apartment" tlbid="{f8937e53-d444-4e71-9275-35b64210cc3b}" progid="AutoItX3.Control.1" description="ImageMagick Class" />
  </file>
</assembly>

I think that most of the base64/classid/etc values are not correct, but I have no idea of how to get the right ones.

Thanks.

Link to comment
Share on other sites

  • 3 months later...

Here the manifest for use of ImageMagickObject.dll

Copy/Past this in NotePad

<?xml version="1.0" encoding="utf-8"?>
<assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <file name="ImageMagickObject.dll">
    <typelib tlbid="{9AA0FC6A-63C7-3632-BD6B-7CAF646E51A0}" version="1.0" helpdir="" resourceid="0" flags="" />
    <comClass clsid="{5630BE5A-3F5F-4BCA-A511-AD6A6386CAC1}" threadingModel="both" tlbid="{9AA0FC6A-63C7-3632-BD6B-7CAF646E51A0}" progid="ImageMagickObject.MagickImage.1" description="ImageMagick Class" />
  </file>
</assembly>

Then Save it to "your_AutoIt_compiled_script_name.exe.manifest" with "Filetype=All" and "Codage=UTF-8"

Or juste Download this Winrared one and rename it to "your_AutoIt_compiled_script_name.exe.manifest" :

ImageMagickObject.dll.exe.manifest.rar

Enjoy :D

Edited by taz742
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...