Search found 35 matches

by mrshake
2013-02-27T14:12:16-07:00
Forum: Users
Topic: Can't seem to replicate PerlMagick on the command line
Replies: 4
Views: 7625

Re: Can't seem to replicate PerlMagick on the command line

Can you post a link to your original tiff image? Also what version of IM and on what platform? This should work convert image -resample 300x300 -background none -rotate 5 result.png I suggest you try png rather than gif if the colors change, since gif is limited to 256 colors, unless you want the s...
by mrshake
2013-02-27T09:47:09-07:00
Forum: Users
Topic: Can't seem to replicate PerlMagick on the command line
Replies: 4
Views: 7625

Can't seem to replicate PerlMagick on the command line

Hello Ladies and Gents, I'm hitting a bit of a wall, and I hope I can get your assistance! I've been tasked with re-writing a perl script in Python, and that Perl script uses ImageMagick/PerlMagick to manipulate images. I've tried using Python's PIL Library, but its not capable of doing one of the t...
by mrshake
2010-02-09T14:31:05-07:00
Forum: Users
Topic: I've had no luck in the Perl Magic Forum.... Any thoughts?
Replies: 6
Views: 16631

Re: I've had no luck in the Perl Magic Forum.... Any though

FYI - I've got this resolved for now... I think.. I shortened the code quite a bit.
by mrshake
2010-02-09T08:51:17-07:00
Forum: Users
Topic: I've had no luck in the Perl Magic Forum.... Any thoughts?
Replies: 6
Views: 16631

Re: I've had no luck in the Perl Magic Forum.... Any though

I don't speak perl, so can't help you there. You might try the equivalent shell commands to see if they work. That would narrow down the problem. You might try updating IM. Your script seems to flood-fill the white border with transparent. But his shirt at the border is white, so that would cause p...
by mrshake
2010-02-08T12:43:45-07:00
Forum: Users
Topic: I've had no luck in the Perl Magic Forum.... Any thoughts?
Replies: 6
Views: 16631

Re: I've had no luck in the Perl Magic Forum.... Any though

Platform is Windows Server 2003, IM version is ImageMagick-6.4.8-Q16
by mrshake
2010-02-08T12:33:03-07:00
Forum: Users
Topic: I've had no luck in the Perl Magic Forum.... Any thoughts?
Replies: 6
Views: 16631

Re: I've had no luck in the Perl Magic Forum.... Any though

Original Tiff, and all the subsequents are in the first post... here is the code: if ($verbose == 1) {print "Transform Image for Rep Website Step 1.......";} my $x15 = $agent4->Resample(density=>'300x300'); my $x16 = $agent4->Set(units=>'pixelsperinch'); my $x17 = $agent4->Rotate(degrees=>...
by mrshake
2010-02-08T09:49:03-07:00
Forum: Users
Topic: I've had no luck in the Perl Magic Forum.... Any thoughts?
Replies: 6
Views: 16631

I've had no luck in the Perl Magic Forum.... Any thoughts?

Hello Folks, I'm having an intermittent problem with a perl/perlmagick script I'm using to process photos for a website. The originals come in as .tif files in either RGB or CMYK mode, sized at 600x750. My script (along with many other things) takes this image: 1. Resamples for density 2. rotates th...
by mrshake
2010-02-04T10:32:20-07:00
Forum: PerlMagick
Topic: Problems with Transparency and image rendering
Replies: 1
Views: 8762

Re: Problems with Transparency and image rendering

if ($verbose == 1) {print "Transform Image for Rep Website Step 1.......";} my $x15 = $agent4->Resample(density=>'300x300'); my $x16 = $agent4->Set(units=>'pixelsperinch'); my $x17 = $agent4->Rotate(degrees=>'-5', background=>'white'); my $x18 = $agent4->Resize(geometry=>'194x233'); my $x...
by mrshake
2010-02-04T10:31:53-07:00
Forum: PerlMagick
Topic: Problems with Transparency and image rendering
Replies: 1
Views: 8762

Problems with Transparency and image rendering

Hello Folks, I'm having an intermittent problem with a perl/perlmagick script I'm using to process photos for a website. The originals come in as .tif files in either RGB or CMYK mode, sized at 600x750. My script (along with many other things) takes this image: 1. Resamples for density 2. rotates th...
by mrshake
2009-01-15T13:28:06-07:00
Forum: PerlMagick
Topic: Converting an RGB Tif to a CMYK Jpg in PerlMagick
Replies: 0
Views: 5358

Converting an RGB Tif to a CMYK Jpg in PerlMagick

Hey Guys,

I've got a TIF using RGB that I need to output a JPG using CMYK. search yeilded no usable results... help?
by mrshake
2009-01-07T08:01:02-07:00
Forum: Users
Topic: Dithered Edges when converting from PNG to GIF - RESOLVED
Replies: 25
Views: 48175

Re: Dithered Edges when converting from PNG to GIF

No problem!! Thanks again for your help!
by mrshake
2009-01-06T14:00:40-07:00
Forum: Users
Topic: Dithered Edges when converting from PNG to GIF - RESOLVED
Replies: 25
Views: 48175

Re: Dithered Edges when converting from PNG to GIF

fmw42,
I hope this doesn't come across as rude, but if you go back to page 1 of this thread... there are LOADS of examples and explanations. Thanks for your help though, I do appreciate it!
by mrshake
2009-01-05T13:10:08-07:00
Forum: Users
Topic: Dithered Edges when converting from PNG to GIF - RESOLVED
Replies: 25
Views: 48175

Re: Dithered Edges when converting from PNG to GIF

Is it ok to bump this?
by mrshake
2008-12-22T12:52:18-07:00
Forum: Users
Topic: Dithered Edges when converting from PNG to GIF - RESOLVED
Replies: 25
Views: 48175

Re: Dithered Edges when converting from PNG to GIF

fmw... I'm limited to gif for the final output. to try and get the best edges on the rotated image... I'm floodfilling the white to the edges, but its ending up black.
by mrshake
2008-12-22T09:38:49-07:00
Forum: Users
Topic: Dithered Edges when converting from PNG to GIF - RESOLVED
Replies: 25
Views: 48175

Re: Dithered Edges when converting from PNG to GIF

I'm still having problems getting transparency working.