Search found 5 matches

by Manisha
2011-03-21T05:20:42-07:00
Forum: Users
Topic: Creation of folds on a given background
Replies: 4
Views: 9578

Creation of folds on a given background

Is it possible to create folds on a given background using imagemagick? Please guide me.

Sample image:
http://img198.imageshack.us/img198/3369 ... cfolds.jpg
Image
by Manisha
2011-03-15T22:11:14-07:00
Forum: Users
Topic: Transparent Background
Replies: 5
Views: 15812

Re: Transparent Background

Thanks, the issue was solved. I switched to cygwin and installed the version you are using and it is working fine now. In my Windows version the color type was "TrueColor" which did not support the alpha channel or transparency, I suppose. I have a real time problem now. I want to take a p...
by Manisha
2011-03-14T06:51:43-07:00
Forum: Users
Topic: Transparent Background
Replies: 5
Views: 15812

Re: Transparent Background

Please check the image at: http://img88.imageshack.us/img88/1148/part5q.png I tried using the following commands: convert part5.png -background transparent white part6.png convert part5.png -transparent white part6.png convert part5.png -alpha transparent part6.png Also, I created a transparent canv...
by Manisha
2011-03-11T02:07:51-07:00
Forum: Users
Topic: Transparent Background
Replies: 5
Views: 15812

Transparent Background

I went through all similar posts and tried the solutions offered along with the examples given in the imagemagick site. The problem is that I cannot achieve a transparent background for my gif and png images. I can change the background to other colors easily but when I try to make it transparent, i...
by Manisha
2011-03-10T22:15:26-07:00
Forum: PerlMagick
Topic: Can't Read an image file
Replies: 9
Views: 39737

Re: Can't Read an image file

Try using this: #!/usr/bin/perl use Image::Magick; my $img = new Image::Magick; my $status = $img->Read("image.gif"); if($status) { die "$status"; } #Montage() returns a new image my $montage = $img->Montage(geometry=>'100x100',tile=> '3*2',borderwidth =>2); $montage=$img->Write(...