Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^5: Merge multiple BMP images into ICO files

by Corion (Patriarch)
on Mar 22, 2007 at 14:58 UTC ( [id://606047]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Merge multiple BMP images into ICO files
in thread Merge multiple BMP images into ICO files

Large parts of Imager are written in XS, which is mostly C with some Perl macros. On Win32, XS gets compiled into .dll files. On other platforms, it gets compiled into whatever format dynamically loadable libraries have. You can find out the filename extension for a platform by inspecting the output of perl -V:so on that platform:

Win32:

Q:\>perl -V:so so='dll';

Solaris:

$ perl -V:so so='so';

Replies are listed 'Best First'.
Re^6: Merge multiple BMP images into ICO files
by jimbojones (Friar) on Mar 22, 2007 at 15:08 UTC
    Hi

    Sorry, I was being too particular in my use of .dll to mean XS code. I would prefer to not have to compile XS code across multiple OSs. A pure Perl solution would be preferable; the reasons are in Re^2: Merge multiple BMP images into ICO files. But as I said in that node, I may be wasting my time looking for/writing a pure Perl solution and will go either with Imager or ImageMagick.

    Thanks for your help. - J

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://606047]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (2)
As of 2024-04-25 20:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found