Search found 245 matches

by rmagick
2009-03-26T15:53:42-07:00
Forum: Users
Topic: from_blob can't find file in /tmp
Replies: 6
Views: 14277

Re: from_blob can't find file in /tmp

I suggest that you upgrade to the latest version of ImageMagick and then see if both problems are resolved. If upgrading doesn't fix the tmp file problem, report it to the Scruffy developers. If upgrading doesn't fix the convert problem, then post a link to the input .svg file here so that somebody ...
by rmagick
2009-03-25T15:41:25-07:00
Forum: Bugs
Topic: Assertion failure reading PSD image in 6.5.0-6
Replies: 3
Views: 8418

Re: Assertion failure reading PSD image in 6.5.0-6

I confirmed that this is fixed in 6.5.0-8. Thanks for the quick turnaround!
by rmagick
2009-03-24T04:17:04-07:00
Forum: Bugs
Topic: Assertion failure reading PSD image in 6.5.0-6
Replies: 3
Views: 8418

Re: Assertion failure reading PSD image in 6.5.0-6

Thanks! I'll pass this along.
by rmagick
2009-03-23T14:17:29-07:00
Forum: Bugs
Topic: Assertion failure reading PSD image in 6.5.0-6
Replies: 3
Views: 8418

Assertion failure reading PSD image in 6.5.0-6

An RMagick user reports the following assert: $ display -version imperial_name_bar_Black.psd Version: ImageMagick 6.5.0-6 2009-03-23 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC display: magick/blob.c:2568: ReadBlob: Assertion `image->blob->type != Undefin...
by rmagick
2009-03-13T15:37:01-07:00
Forum: Users
Topic: Loading Image into plain Array with Magick++
Replies: 1
Views: 4282

Re: Loading Image into plain Array with Magick++

Check out Magick::Image.write in Magick++/lib/Image.cpp.
by rmagick
2009-03-06T17:08:31-07:00
Forum: Users
Topic: Newbie getting an exception straight away
Replies: 2
Views: 5654

Re: Newbie getting an exception straight away

I've seen that exception before in an out-of-memory condition. Is the AVI file very long? That method call will read the entire file into memory and convert it to ImageMagick's internal format. Do you plan on modifying the individual frames? If not, and you're just trying to play the AVI's, there's ...
by rmagick
2009-03-05T14:42:57-07:00
Forum: Users
Topic: Format conversion in memory buffers (no hard disk r/w)
Replies: 3
Views: 8213

Re: Format conversion in memory buffers (no hard disk r/w)

Not really, unless you want to download the RMagick source code, but they're not all that hard to use. A "blob" is just the image data as if it was in a disk file, except it's in an in-memory buffer. If you call ImageToBlob and write the buffer it returns to disk, then that file is exactly...
by rmagick
2009-03-04T16:21:48-07:00
Forum: Developers
Topic: to control the contrast level???
Replies: 3
Views: 9826

Re: to control the contrast level???

I am using Image::contrast(unsighned int sharpen_). to control the contrast. but it does not work good, first what he value range of sharpen_?? how to use it Image::sharpen is defined in Image.cpp. It calls ContrastImage in the MagickCore API. ContrastImage takes a boolean argument. If 1, it increa...
by rmagick
2009-03-04T16:03:20-07:00
Forum: Bugs
Topic: Incorrect conversion from MVG to SVG
Replies: 1
Views: 4288

Incorrect conversion from MVG to SVG

This is 6.4.9-8 on Ubuntu 8.10, built with librsvg. I started with the MVG program shown below, which produces the image below it, to SVG using this command: convert -size 300x300 pattern.mvg pattern.svg push defs push pattern xxxxx 0 0 16 16 push graphic-context stroke "none" fill "D...
by rmagick
2009-03-04T15:41:58-07:00
Forum: Users
Topic: Will librsvg help with creating SVG output?
Replies: 2
Views: 5619

Re: Will librsvg help with creating SVG output?

Thanks!
by rmagick
2009-03-04T12:33:15-07:00
Forum: Users
Topic: Will librsvg help with creating SVG output?
Replies: 2
Views: 5619

Will librsvg help with creating SVG output?

When converting an MVG input file to SVG output, will librsvg help? Or is librsvg strictly for use with SVG input files?
by rmagick
2009-03-04T12:23:18-07:00
Forum: Users
Topic: Format conversion in memory buffers (no hard disk r/w)
Replies: 3
Views: 8213

Re: Format conversion in memory buffers (no hard disk r/w)

Check out the BlobToImage/ImageToBlob APIs
by rmagick
2009-02-16T16:52:09-07:00
Forum: Users
Topic: Using IM to create iPhone shine effect
Replies: 2
Views: 10847

Re: Using IM to create iPhone shine effect

I thought this was an interesting question so I worked up an RMagick program to do the job. Sorry it's not pure ImageMagick but I'm not very clever with the convert command. Perhaps somebody else can convert the RMagick methods to ImageMagick commands and options. Here's the goal image (on the left)...
by rmagick
2009-02-11T15:50:53-07:00
Forum: Users
Topic: Removing footer from each page of multi-page pdf
Replies: 0
Views: 2849

Re: Removing footer from each page of multi-page pdf

I'm pretty sure you're not going to be able to do with with ImageMagick. IM will convert the PDF to a raster image but not back into a PDF file. Use Google to search for programs that are designed for modifying PDF files.
by rmagick
2009-02-04T16:36:22-07:00
Forum: Users
Topic: PNG with opacity on JPEG ?
Replies: 2
Views: 5820

Re: PNG with opacity on JPEG ?

That's called compositing. Here's the scoop: http://www.imagemagick.org/Usage/compose/