Search found 237 matches

by agriz
2016-07-05T08:07:24-07:00
Forum: Users
Topic: Single image - Multiple crop and join
Replies: 4
Views: 5590

Re: Single image - Multiple crop and join

Code: Select all

convert image.jpg -crop 540x720+0+0 +gravity +repage -crop 200x200 +repage -layers merge output.jpg
Image
Image
by agriz
2016-07-05T03:48:08-07:00
Forum: Users
Topic: Single image - Multiple crop and join
Replies: 4
Views: 5590

Re: Single image - Multiple crop and join

Thank you sir, I will try layers merge and let you know.
by agriz
2016-07-05T03:20:58-07:00
Forum: Users
Topic: Single image - Multiple crop and join
Replies: 4
Views: 5590

Single image - Multiple crop and join

Code: Select all

convert image.jpg -crop 540x720+0+0 +gravity +repage -crop 200x200 +repage output__%d.gif
(usage -> Rose crop coding)

How do i join the cropped images in the same command?
by agriz
2016-06-30T00:52:35-07:00
Forum: Users
Topic: How do we mingle the photo color to background color?
Replies: 12
Views: 9120

Re: How do we mingle the photo color to background color?

Sir, i posted the result image in the first post. I just found it in some website. I wanted to try the effect. I don't know how to give you input images. I just wanted to make the image looks like it was drawn on the beach sand, Multiply is giving good result. I will post the code and images i used ...
by agriz
2016-06-29T21:49:08-07:00
Forum: Users
Topic: How do we mingle the photo color to background color?
Replies: 12
Views: 9120

Re: How do we mingle the photo color to background color?

If a pixel that is black but 70% transparent is composed over a colour, the result will be a slightly dark version of that colour. I did 30% colorize and changed to gray scale photo.png was already changed to some perspective using photoshop beach.png ( photo.png -colorspace Gray -colorize 30% ) -g...
by agriz
2016-06-25T04:58:22-07:00
Forum: Users
Topic: Usage Example - Not working as expected
Replies: 9
Views: 6293

Re: Usage Example - Not working as expected

Are both of them using same memory?
You said we need to write an MPR. So will it use much memory than clone?
by agriz
2016-06-25T03:23:51-07:00
Forum: Users
Topic: Usage Example - Not working as expected
Replies: 9
Views: 6293

Re: Usage Example - Not working as expected

It's working and what is the difference between clone and mpr which one should i use?
by agriz
2016-06-25T00:52:17-07:00
Forum: Users
Topic: Usage Example - Not working as expected
Replies: 9
Views: 6293

Re: Usage Example - Not working as expected

Thank you sir. I have to read about it. I will try it and tell you.
Thanks for the advice
by agriz
2016-06-24T22:41:19-07:00
Forum: Users
Topic: Usage Example - Not working as expected
Replies: 9
Views: 6293

Re: Usage Example - Not working as expected

convert image.png \( -clone 0 rose.png -compose Over -composite \) \ \( shape.png \) -delete 0 -alpha off -compose copy_opacity -composite \ image.png +swap -gravity center -compose Over -composite output.png i used the image.png two times. I am not able to use the clone because i have to delete it...
by agriz
2016-06-24T09:21:28-07:00
Forum: Users
Topic: Usage Example - Not working as expected
Replies: 9
Views: 6293

Re: Usage Example - Not working as expected

Thank you
by agriz
2016-06-24T04:47:19-07:00
Forum: Users
Topic: Usage Example - Not working as expected
Replies: 9
Views: 6293

Usage Example - Not working as expected

convert /( tile_aqua.jpg -resize 200% /) /( tile_water.jpg -gravity center /) /( moon_mask.gif -gravity center /) -composite output.png I expected the moon to be in the center. But it is in the top right corner and the moon is not properly visible too. convert /( tile_aqua.jpg -resize 200% /) /( ti...
by agriz
2016-06-20T02:46:36-07:00
Forum: Users
Topic: Gif animation - Different delay values to each frame?
Replies: 2
Views: 3139

Re: Gif animation - Different delay values to each frame?

Thank you. I will try and tell you sir
by agriz
2016-06-19T08:03:13-07:00
Forum: Users
Topic: Gif animation - Different delay values to each frame?
Replies: 2
Views: 3139

Gif animation - Different delay values to each frame?

I can clone frames in gif animation. But how can i change the delay of each frame?
by agriz
2016-06-18T01:35:15-07:00
Forum: IMagick
Topic: EXEC or Imagick? - Safer and Faster
Replies: 5
Views: 11616

Re: EXEC or Imagick? - Safer and Faster

Thanks for advises :)
by agriz
2016-06-17T19:16:08-07:00
Forum: IMagick
Topic: EXEC or Imagick? - Safer and Faster
Replies: 5
Views: 11616

Re: EXEC or Imagick? - Safer and Faster

Can you tell me how to safely use exec with php? I read the following in internet You cannot limit PHP exec function's commands to be executed. Also even if you do some string checking for exec to have "convert" command, I'll be able to execute my command like this: "convert img.jpg i...