Search found 33 matches

by johnfl68
2018-04-15T10:17:27-07:00
Forum: PerlMagick
Topic: Cannot install latest version of Perlmagick
Replies: 3
Views: 52073

Re: Cannot install latest version of Perlmagick

I'm not that familiar with Windows Server, but if I remember correctly, and it is similar to Linux you would need to do the following as well to add PerlMagick:

ppm install PerlMagick
by johnfl68
2018-03-28T14:09:04-07:00
Forum: PerlMagick
Topic: Interline Spacing format for PERL?
Replies: 2
Views: 45018

Re: Interline Spacing format for PERL?

OK, I found the other code, it's one of those stupid quirks that can be so frustrating at times. You have to have interline-spacing in single quotes to work. The example below works: fill => $fontcolor1, gravity => 'northwest', font => $font1, pointsize => 46, 'interline-spacing' => -20, size => '16...
by johnfl68
2018-03-28T12:40:52-07:00
Forum: PerlMagick
Topic: Interline Spacing format for PERL?
Replies: 2
Views: 45018

Interline Spacing format for PERL?

Hello: Does anyone know the correct context format for interline-spacing in PERL? fill => $fontcolor1, gravity => 'northwest', font => $font1, pointsize => 46, interline-spacing => -20, size => '1650x120' I've tried interline-spacing and interlinespacing, etc. Nothing seems to work. Version: ImageMa...
by johnfl68
2017-06-29T21:35:55-07:00
Forum: PerlMagick
Topic: PNG to PDF comes out very large!
Replies: 3
Views: 52479

Re: PNG to PDF comes out very large!

Hello: I am working in Perl with: use Image::Magick; Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-26 http://www.imagemagick.org I am not using command line like your convert example, as I work strictly in Perl. Create new image: my $image = Image::Magick->new; $image->Set(size=>'5100x6600'); Then...
by johnfl68
2017-06-29T20:36:46-07:00
Forum: PerlMagick
Topic: PNG to PDF comes out very large!
Replies: 3
Views: 52479

PNG to PDF comes out very large!

Hello: I have a 8.5" x 11" PNG at 600 DPI (5100x6600 pixels). When I write to PDF, it comes out 70.83" x 91.67" for some reason. How do I get a 8.5" x 11" PDF file output?? In searching I have seen others with this issue, but not really a solution. Thank you for your he...
by johnfl68
2016-04-02T12:00:02-07:00
Forum: PerlMagick
Topic: Caption Max Font Size?
Replies: 4
Views: 17955

Caption Max Font Size?

Just seeing if anyone has any other ideas on this. I have a bunch of script that take API data and place a paragraph centered in a box using IM caption in Perl. The issue is the paragraphs can be anywhere from around 20 characters to around 120 characters. So typically I use a 36 point font for a 28...
by johnfl68
2016-01-02T16:28:00-07:00
Forum: PerlMagick
Topic: PNG output of script showing up in terminal
Replies: 3
Views: 20146

Re: PNG output of script showing up in terminal

Version: ImageMagick 6.7.7-10 2014-03-06 Q16 $image->Write( filename => "png24:$outputfile" ); gforce@keyop:~$ /home/weather/templates/landscape/HDbuilderIO.pl ‰PNG ‰PNG IHDR € 8 g±V gAMA ±üa sRGB ®Îé cHRM z& €„ ú €è u0 ê` :˜ pœºQ< bKGD ÿ ÿ ÿ ½§“ pHYs H H FÉk> € IDATxÚìÝw˜Uð;If’l£×¥÷¢...
by johnfl68
2016-01-02T15:29:26-07:00
Forum: PerlMagick
Topic: PNG output of script showing up in terminal
Replies: 3
Views: 20146

PNG output of script showing up in terminal

I have an odd problem, that I can not figure out. I have Perl ImageMagick scripts that have been running on Ubuntu 14.04 for some time. I am trying to set up same scripts on another host provider, still same server and everything, just different Virtual Instance. When I run the script from the termi...
by johnfl68
2015-09-12T05:35:58-07:00
Forum: Users
Topic: Ubuntu 14.04 and ImageMagick
Replies: 1
Views: 8905

Ubuntu 14.04 and ImageMagick

Hello: The default install of ImageMagick on Ubuntu Server 14.04 is 6.7.7-10 which works but has issues. This version has issues with caption text being cut off in some instances. It is my understanding this has been fixed in newer versions. Has anyone successfully installed the current version of I...
by johnfl68
2013-11-25T00:32:13-07:00
Forum: Users
Topic: ImageMagick versions on Ubuntu Server 12.04
Replies: 3
Views: 7567

Re: ImageMagick versions on Ubuntu Server 12.04

Those there really needs to be some better instructions on how to get the latest build of ImageMagick and Image::Magick (Perl) installed on Ubuntu Server 12.04. I have looked all around, and tried different instructions listed various places, and none have really worked. It shouldn't be as difficult...
by johnfl68
2013-11-16T17:54:47-07:00
Forum: PerlMagick
Topic: Image::Magick and PerlBrew
Replies: 3
Views: 15859

Image::Magick and PerlBrew

Anyone have any luck getting Image::Magick to work with PerlBrew? I need to move to a larger host, thought I had found a great one, only to find out that they are using a version of Perl that is over 6 years old, and they don't want to install anything newer on the server. With PerlBrew, I am able t...
by johnfl68
2013-11-02T21:04:05-07:00
Forum: PerlMagick
Topic: PerlMagick outputting two image files
Replies: 2
Views: 10605

Re: PerlMagick outputting two image files

It's a bit complicated, too much so to do via command line. Image is a multi composite with weather icons, Days of the Week, High and Low Temperatures, and some other text. I just started the whole process over, doing exactly the same thing, removed items and made changes one at a time checking each...
by johnfl68
2013-11-02T19:58:13-07:00
Forum: PerlMagick
Topic: PerlMagick outputting two image files
Replies: 2
Views: 10605

PerlMagick outputting two image files

Hello all: I have several scripts, all doing similar image creations, they all have been working fine. Tonight, I made a copy of one of those, and made some modifications to output size, and some other things, nothing major. Now, instead of outputting myfile.png it is outputting myfile-0.png and myf...
by johnfl68
2013-05-24T16:56:03-07:00
Forum: PerlMagick
Topic: Caption is overflowing box
Replies: 5
Views: 15984

Re: Caption is overflowing box

Here is what happened earlier today: https://dl.dropboxusercontent.com/u/2859483/cherokee.png The "y" in Cloudy was cut off, instead of wrapping to a new line. The text box starts just below the icon with the windmills, and extends down to just above the Powered by... text at the bottom, s...
by johnfl68
2013-05-24T11:40:17-07:00
Forum: PerlMagick
Topic: Caption is overflowing box
Replies: 5
Views: 15984

Re: Caption is overflowing box

Here is the Version information (community server): Version: ImageMagick 6.7.6-4 2012-09-03 Q16 Linux 3.5.4 my $image = Image::Magick->new; $image->Set(background => "transparent", fill => $fontcolor1, gravity => 'west', font=>"$font2", pointsize => 26, size => '325x90'); $image-...