Search found 12 matches
- 2018-07-18T11:46:15-07:00
- Forum: IMagick
- Topic: Paths and rectangles off by one pixel.
- Replies: 14
- Views: 143396
Re: Paths and rectangles off by one pixel.
The path doesn't have to be a rectangle though, so that wouldn't really help.
- 2018-07-17T17:21:51-07:00
- Forum: IMagick
- Topic: Paths and rectangles off by one pixel.
- Replies: 14
- Views: 143396
Re: Paths and rectangles off by one pixel.
I'm meanwhile looking for a solution which works with the current way ImageMagick handles paths, but don't seem to be able to find one. The problem I'm trying to solve: I have an SVG path definition I'm trying to hand over to ImageMagick to draw the same path. This generally works the path points ...
- 2018-06-15T01:52:24-07:00
- Forum: IMagick
- Topic: Paths and rectangles off by one pixel.
- Replies: 14
- Views: 143396
Re: Paths and rectangles off by one pixel.
Since there were no more replies on this, I'm going to breach the subject again. Is this considered wanted behaviour to not conform with the SVG standard or is it a bug?
- 2018-05-23T16:18:32-07:00
- Forum: IMagick
- Topic: Paths and rectangles off by one pixel.
- Replies: 14
- Views: 143396
Re: Paths and rectangles off by one pixel.
To make things simpler, here is the CLI code for a 3x3 image white a dot in the center: convert -size 3x3 xc:skyblue -stroke None -fill black -draw "path 'M 1,1 L 2,1 2,2 1,2 Z'" test.png And here is the exact same path in an SVG: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:dc ...
- 2018-05-23T10:11:11-07:00
- Forum: IMagick
- Topic: Paths and rectangles off by one pixel.
- Replies: 14
- Views: 143396
Re: Paths and rectangles off by one pixel.
That's what I get, yes. But according to the SVG standard, I should get only the 4,4 pixel drawn.
- 2018-05-23T10:09:07-07:00
- Forum: IMagick
- Topic: Paths and rectangles off by one pixel.
- Replies: 14
- Views: 143396
- 2018-05-23T10:07:46-07:00
- Forum: IMagick
- Topic: Paths and rectangles off by one pixel.
- Replies: 14
- Views: 143396
Re: Paths and rectangles off by one pixel.
Okay, here is some example code for that in SVG: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 10 10" height="10" width="10"> <rect ...
- 2018-05-22T10:42:00-07:00
- Forum: IMagick
- Topic: Paths and rectangles off by one pixel.
- Replies: 14
- Views: 143396
Paths and rectangles off by one pixel.
So, in advance, already found this old topic, but didn't want to necro it: http://www.imagemagick.org/discourse-server/viewtopic.php?t=14379 I have the exact same problem with both paths and rectangles. Here is the sample code that I used to trace this back: <?php $image = new Imagick(); $image ...
- 2014-07-12T15:21:35-07:00
- Forum: Users
- Topic: Outline when converting PNG to PDF
- Replies: 8
- Views: 8197
Re: Outline when converting PNG to PDF
Yep, works perfectly fine.fmw42 wrote:Does your PDF show any transparency against a non-white background? All my attempts are giving a solid white image with perfectly opaque alpha channel (fully opaque and no transparency).
- 2014-07-12T15:09:26-07:00
- Forum: Users
- Topic: Outline when converting PNG to PDF
- Replies: 8
- Views: 8197
Re: Outline when converting PNG to PDF
Nevermind, I solved it myself. It is kinda tricky because every alpha channel mode has a constant but the "background" one, so I had to figure out the correct integer for that. Just for reference, if anyone else is looking this up: $image = new Imagick('image.png'); $image->setImageFormat('pdf ...
- 2014-07-12T13:20:29-07:00
- Forum: Users
- Topic: Outline when converting PNG to PDF
- Replies: 8
- Views: 8197
Re: Outline when converting PNG to PDF
You can change the background, from transparent black, to transparent white: convert test.png -background White -alpha background out.pdf That indeed did the trick, thanks a lot. Now I'm wondering, do you happen to know how the same would look with the Imagick PHP library? http://php.net/imagick
- 2014-07-12T11:36:48-07:00
- Forum: Users
- Topic: Outline when converting PNG to PDF
- Replies: 8
- Views: 8197
Outline when converting PNG to PDF
Hi, I've stumbled on a problem which took me more than an hour already to investigate. When you take a look at the following image: http://stuff.dasprids.de/images/test.png You'll see that it's a white object on a transparent background. Now when I try to convert it to a PDF with ImageMagick ...