Convert Online?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Yaron
Posts: 17
Joined: 2016-09-05T19:02:33-07:00
Authentication code: 1151

Convert Online?

Post 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.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Convert Online?

Post 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.
Yaron
Posts: 17
Joined: 2016-09-05T19:02:33-07:00
Authentication code: 1151

Re: Convert Online?

Post 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.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Convert Online?

Post 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.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Convert Online?

Post 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.
snibgo's IM pages: im.snibgo.com
Yaron
Posts: 17
Joined: 2016-09-05T19:02:33-07:00
Authentication code: 1151

Re: Convert Online?

Post 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.
khoaow
Posts: 1
Joined: 2018-08-29T07:07:42-07:00
Authentication code: 1152

Re: Convert Online?

Post 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/
Yaron
Posts: 17
Joined: 2016-09-05T19:02:33-07:00
Authentication code: 1151

Re: Convert Online?

Post 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.
Post Reply