Page 1 of 1

Convert Online?

Posted: 2017-03-17T08:55:36-07:00
by Yaron
Hello,

I've installed ImageMagick for the following convert command.

Code: Select all

convert Bookmark14.png -define h:format=rgba -depth 8 -size 14x14  Bookmark14.h
(Thanks to glennrp).

Is it possible to get that conversion online (i.e. without having ImageMagick installed on my machine).

Thank you.

Re: Convert Online?

Posted: 2017-03-17T12:18:54-07:00
by Bonzo
If you have a website you could install it but I doubt you will find a site allowing you to input whatever command you want.

Re: Convert Online?

Posted: 2017-03-17T13:43:36-07:00
by Yaron
Hello Bonzo,

Thanks for replying. I appreciate it.

So I understand It can not be achieved with http://transloadit.imagemagick.org/Magi ... Studio.cgi, correct?

Best regards.

Re: Convert Online?

Posted: 2017-03-17T14:55:16-07:00
by Bonzo
I had forgotten about that but if you can find all the options you need give it a go - I can not see -define but it may be there somewhere.

I would suggest if you have a website and you install Imagemagick it would be quicker/easier.

Re: Convert Online?

Posted: 2017-03-17T15:07:20-07:00
by snibgo
@Yaron: If you explain more detail of what you want to do, perhaps we can advise more.

You are creating a .h file, a C header, from an image. This implies that you have a C compiler, so can build and run programs.

If you can do that on a server (ie "online") then there should be no problems running IM on that server.

Re: Convert Online?

Posted: 2017-03-17T15:37:11-07:00
by Yaron
Hello Bonzo and snibgo,

Thank you both. I appreciate your help.
I had forgotten about that but if you can find all the options you need give it a go - I can not see -define but it may be there somewhere.
"define" and "depth". Also, I get an error when I enter "14x14" to the Size field.

***
You are creating a .h file, a C header, from an image.

I've created the .h file using ImageMagick installed on my machine.
This implies that you have a C compiler, so can build and run programs.
Yes, I'm using VS 2013 Express. Can I build a C header from an image with VS?

Best regards.

Re: Convert Online?

Posted: 2018-08-29T21:51:01-07:00
by khoaow
Hello all! I have created the web that could help us able to run imagemagick 'on the fly' with full feature. No need to install. Feel free to give me any comment or feedback, thank you so much! ^^

https://imagemagick.online/

Re: Convert Online?

Posted: 2018-08-30T10:09:30-07:00
by Yaron
Hello khoaow,

Thank you for your work. Appreciated.

Using

Code: Select all

convert Arrow.png -define h:format=rgba -depth 8 -size 14x14 Arrow.h
I get

Code: Select all

convert -verbose Arrow.png -define h:format=rgba -depth 8 -size 14x14 Arrow.h
Can you please change that?

Regards.