HI, all
a couple of questions:
(1) at the command line, I can do this:
convert pic1.jpg pic2.jpg +append stitched_horizontally.jpg
How do I do the same with PerlMagick ??
(2) along the same lines: if I have two handles -- one obtained through $handle1->Read('path1.jpg') and the other obtain ...
Search found 11 matches
- 2012-12-16T21:12:35-07:00
- Forum: PerlMagick
- Topic: PerlMagick +append
- Replies: 1
- Views: 15293
- 2012-06-09T00:27:32-07:00
- Forum: PerlMagick
- Topic: annoying failure with thresholding
- Replies: 4
- Views: 20889
Re: annoying failure with thresholding [SOLVED]
can you provide a link to your image?
and tell us exactly what your command line is and what version of IM and platform you are using?
I solved my problem. It was the destination format. Duh! I was thresholding the original image and then saving it back to a jpg, with default compression ...
and tell us exactly what your command line is and what version of IM and platform you are using?
I solved my problem. It was the destination format. Duh! I was thresholding the original image and then saving it back to a jpg, with default compression ...
- 2012-06-07T15:21:26-07:00
- Forum: PerlMagick
- Topic: annoying failure with thresholding
- Replies: 4
- Views: 20889
Re: annoying failure with thresholding
convert 50% in.jpg out.jpg
I do not use or know perl, but the above in not correct. It should be
convert in.jpg -threshold 50% out.jpg
yup, sorry -- that was a typo on my part. I have been trying it with the CORRECT syntax, like the one you spelled out. What I said originally still stands ...
I do not use or know perl, but the above in not correct. It should be
convert in.jpg -threshold 50% out.jpg
yup, sorry -- that was a typo on my part. I have been trying it with the CORRECT syntax, like the one you spelled out. What I said originally still stands ...
- 2012-06-07T07:33:11-07:00
- Forum: PerlMagick
- Topic: annoying failure with thresholding
- Replies: 4
- Views: 20889
annoying failure with thresholding
This might be a general imagemagick issue rather than perl-specific, but I'm using perl (and command-line convert)
So far, imagemagick thresholding is, at best, flaky for me, or even downright useless. Gimp's Colors->Threshold removes light-gray fuzz from my image, leaving just black and white ...
So far, imagemagick thresholding is, at best, flaky for me, or even downright useless. Gimp's Colors->Threshold removes light-gray fuzz from my image, leaving just black and white ...
- 2012-04-30T03:09:10-07:00
- Forum: PerlMagick
- Topic: GetPixel failing
- Replies: 1
- Views: 12682
GetPixel failing
I'm really puzzled
the "identify" command returns " JPEG 205x154 205x154+0+0 8-bit DirectClass 48KiB 0.000u 0:00.000" on the image, and it is a color photo I can see with lots of multicolored flowers.
when I read it into PerlMagick and iterate over every pixel, like this...
for(my $i=1; $i ...
the "identify" command returns " JPEG 205x154 205x154+0+0 8-bit DirectClass 48KiB 0.000u 0:00.000" on the image, and it is a color photo I can see with lots of multicolored flowers.
when I read it into PerlMagick and iterate over every pixel, like this...
for(my $i=1; $i ...
- 2012-03-20T06:40:02-07:00
- Forum: PerlMagick
- Topic: Select rectangular region -- Clone & Crop?
- Replies: 9
- Views: 37677
Re: Select rectangular region -- Clone & Crop?
An image clone copies the image meta data but shares the pixel data cache with the source image. Its only when you try to update the clone pixel data that the pixel cache is cloned.
OK. I guess I got my answer. Just for academic purposes, though:
The replies seem to suggest the following ...
OK. I guess I got my answer. Just for academic purposes, though:
The replies seem to suggest the following ...
- 2012-03-20T04:34:48-07:00
- Forum: PerlMagick
- Topic: Select rectangular region -- Clone & Crop?
- Replies: 9
- Views: 37677
Re: Select rectangular region -- Clone & Crop?
note that cloning an image is not scary, memory wise.
Cloning does make a copy of image meta-data, but the actual image data is not copied until it is changed.
Crop only reads the existing data, and creates a new image of the area being cropped.
As such a clone-crop only costs the original image ...
Cloning does make a copy of image meta-data, but the actual image data is not copied until it is changed.
Crop only reads the existing data, and creates a new image of the area being cropped.
As such a clone-crop only costs the original image ...
- 2012-03-20T00:51:36-07:00
- Forum: PerlMagick
- Topic: Annotate fails for unicode chars from broader set
- Replies: 2
- Views: 18053
Re: Annotate fails for unicode chars from broader set
ImageMagick will handle UNICODE just fine.
The text must be in utf-8 but that is pretty well implied as standard. You can use a converter like "iconv" or "recode" to convert other text formats (like utf16, or ISO8859-1, or gb2312) to utf8
What it does however need is a font that contains the ...
The text must be in utf-8 but that is pretty well implied as standard. You can use a converter like "iconv" or "recode" to convert other text formats (like utf16, or ISO8859-1, or gb2312) to utf8
What it does however need is a font that contains the ...
- 2012-03-19T10:17:25-07:00
- Forum: PerlMagick
- Topic: Annotate fails for unicode chars from broader set
- Replies: 2
- Views: 18053
Annotate fails for unicode chars from broader set
I tried Times New Roman and other fonts. Regardless -- characters such as '∥', '⊞', '≅', and many others, including some composite (combining) characters from various alphabets are rendered as quesitonmarks by -->Annotate
(this is the output of the code below: http://www.flight.us/misc/myannot.jpg ...
(this is the output of the code below: http://www.flight.us/misc/myannot.jpg ...
- 2012-03-19T09:03:59-07:00
- Forum: PerlMagick
- Topic: Select rectangular region -- Clone & Crop?
- Replies: 9
- Views: 37677
Re: Select rectangular region -- Clone & Crop?
ImageMagick supports efficient cropping for raw images and MPC images. Assume a rectangular array of RGB pixels:
convert -size 100000x100000 -depth 8 'rgb:myimage.dat[1000x1000+100+100]' crop.png
Or MPC:
convert image.mpc -crop 1000x1000+100+100 crop.jpg
For all other formats, the image must ...
convert -size 100000x100000 -depth 8 'rgb:myimage.dat[1000x1000+100+100]' crop.png
Or MPC:
convert image.mpc -crop 1000x1000+100+100 crop.jpg
For all other formats, the image must ...
- 2012-03-19T06:31:27-07:00
- Forum: PerlMagick
- Topic: Select rectangular region -- Clone & Crop?
- Replies: 9
- Views: 37677
Select rectangular region -- Clone & Crop?
Is Clone & Crop the only way to get a rectangular region from an image (leaving the original intact)??
(something like
$original=Image::Magick->[whichever way];
$rectangle=$original->Clone();
$rectangle->Crop(geometry=>'80x80+25+50'); )
Is there a way to get/select a rectangular region without ...
(something like
$original=Image::Magick->[whichever way];
$rectangle=$original->Clone();
$rectangle->Crop(geometry=>'80x80+25+50'); )
Is there a way to get/select a rectangular region without ...