Re: Simple windows code example needed

2017-01-12 Thread ToddAndMargo
On 01/11/2017 09:22 PM, Lloyd Fournier wrote: Ah. If that's the case I have nothing useful to contribute :| LL On Thu, Jan 12, 2017 at 4:15 PM Brandon Allbery wrote:

Re: how to find libs

2017-01-12 Thread faraco3
About what functions can do, you have to look at the library documentation that you want to use. For example, GNU C library - http://www.gnu.org/software/libc/manual/pdf/libc.pdf On Khamis 12 Jan 2017 05:00 , Mueller, Andreas wrote: Hi, if I wan't to manipulate an image I guess I can use a

Re: Simple windows code example needed

2017-01-12 Thread Parrot Raiser
P.S. I just noticed your "long way": perl6 my_program.pl If you are invoking the script as an argument to perl6, you don't need a suffix. Windows needs the .pl suffix to decide what to do with the file. If you have Perl 5, you are likely have .pl linked to it. I'd suggest a separate value,

Re: Simple windows code example needed

2017-01-12 Thread Parrot Raiser
"There is no "#!/usr/bin/perl6" utility in Windows". That's not a utility, as such, it's telling the shell where the program was invoked, which interpreter to use. Windows ignores the !# line, because it uses the file-type suffix to find the information. On 1/12/17, ToddAndMargo

Re: how to find libs

2017-01-12 Thread yary
I would do a web search for- image manipulation C library, and then check out the documentation of the results until you find one that has both enough documentation that you can understand how to use it, and enough functionality that you need. I would prefer a c library over C++, I imagine that