Instagram Effects

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
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Instagram Effects

Post by fmw42 »

see https://github.com/paulasmuth/hipster_filters

Note, without knowing what was done to create them, it is hard to recreated them exactly. Best advice is search Google for Photoshop Instagram scripts. Then open the scripts in PS and see what was done. The try to recreate them in IM with equivalent or near equivalent commands. Furthermore, many IM commands will not use or have the same arguments or values as in PS, so some trial and error is needed.

If you are on Linux, Mac or Windows with cygwin, you can generate somewhat similar results to some instagrams using my toycamera script below. But you still have to decide what arguments to provide. I know of no other repository of IM instagram-like effects, than the one above.

Perhaps someone else on the forum can identify further resources.
Last edited by fmw42 on 2012-11-01T21:41:20-07:00, edited 2 times in total.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Instagram Effects

Post by fmw42 »

I ran into those scripts on GitHub earlier, but they didn't translate to the filters.
Click on the xxx.rb files to see the code.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Instagram Effects

Post by Bonzo »

Will that translate directly to IM?
No but you can see the options/method used for the effect which will give you a starting point.

I would guess if you want the effects with IM you are going to have to learn how to use it or pay somebody to do it.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Instagram Effects

Post by fmw42 »

It might work with the .rb files, if you install RMagick (Ruby). See http://www.imagemagick.org/script/api.php
Last edited by fmw42 on 2012-11-03T10:53:46-07:00, edited 1 time in total.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Instagram Effects

Post by Bonzo »

Personaly I would use php and exec() as it is one less thing to learn - the rmagick or Imagick class/convention.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Instagram Effects

Post by fmw42 »

Agreed, but then one has to convert the RMagick calls to the IM command line equivalents. That is not hard if you understand the IM command line.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Instagram Effects

Post by snibgo »

While looking for something else, I bumped into this page: http://net.tutsplus.com/tutorials/php/c ... -with-php/
snibgo's IM pages: im.snibgo.com
Post Reply