Search found 8 matches

by amit1411
2016-08-19T08:58:37-07:00
Forum: Developers
Topic: JMagick: levels not working properly
Replies: 3
Views: 6702

JMagick: levels not working properly

Hello, I am working on an Android app, where I need to apply levels to an image via JMagick. JMagick API levelImage takes one string as an argument. Since we need to provide black point, midpoint and white point, could someone please help on how it needs to be provided? I tried some options with com...
by amit1411
2016-07-26T09:59:27-07:00
Forum: Magick++
Topic: Magick++: Crosscompile to Android
Replies: 7
Views: 20717

Re: Magick++: Crosscompile to Android

I was able to compile and successfully run Magic++ on Android using a custom build script found here: https://github.com/paulasiimwe/Android-ImageMagick I'm thinking about uploading my version soon. Let me know if you are interested. Hi drunkensapo, I would be very interested in your version, pleas...
by amit1411
2016-07-19T06:59:28-07:00
Forum: Users
Topic: Need latest ImageMagick library for Android
Replies: 1
Views: 3489

Need latest ImageMagick library for Android

Hello, I need to use ImageMagick for an android app and am seeking help to know which library I should use. I have tried using the library from the following location, but it does not have many important features that I need (like clutImage, PosterizeImage, VividLight blending mode, etc.): https://g...
by amit1411
2016-07-04T08:20:14-07:00
Forum: MagickWand
Topic: Using MagickLevelImage to apply levels in IOS
Replies: 1
Views: 12638

Using MagickLevelImage to apply levels in IOS

Hi, I am trying to apply levels on an Image using MagickLevelImage method in IOS. For this I have to provide the 0 as white point and maximum quantum range as black point. I am not sure how can I get the maximum quantum range value for the given wand? Can someone please help me with this code. The p...
by amit1411
2015-12-23T01:04:44-07:00
Forum: Users
Topic: Break complex command into simpler steps...
Replies: 6
Views: 7723

Re: Break complex command into simpler steps...

Thanks. Now I understood the command, but you are right that the "Divide" blend type is not mentioned in IMagic documentation :( Using exec command is definitely an option but that involves saving the image file we receive from UI to a server location, use exec to run the commands in which...
by amit1411
2015-12-22T23:32:12-07:00
Forum: Users
Topic: Break complex command into simpler steps...
Replies: 6
Views: 7723

Re: Break complex command into simpler steps...

Thanks a lot for your response. Actually I want to convert this command to php code using IMagick. I am still not sure how to create the php script for the third command here : convert a1.png a2.png +swap -compose divide -composite a3.png What is it actually doing. Is it possible to further break it...
by amit1411
2015-12-22T04:12:29-07:00
Forum: Users
Topic: Break complex command into simpler steps...
Replies: 6
Views: 7723

Break complex command into simpler steps...

Hi, I want to break a complex Imagemagic command into small simpler steps. Can someone please help me. We can create some intermediate temp files for intermediate steps. The command is : convert subject.jpg -colorspace gray ( +clone -blur 0x2 ) +swap -compose divide -composite -linear-stretch 5%x0% ...
by amit1411
2015-08-03T22:29:15-07:00
Forum: Users
Topic: Compositing Layered Photoshop files
Replies: 5
Views: 9793

Re: Compositing Layered Photoshop files

Hi jmd,
Came across this question while trying to fix a similar issue. I also have multiple Photoshop layers which blend together to create the final output. Not ale to get through it. Just checking if you got solution to your problem and it would be great if you can share the same with me.