Search found 10 matches
- 2016-05-18T07:00:26-07:00
- Forum: Developers
- Topic: Convert eps to png, unable to load module without PATH set (Windows), work around
- Replies: 1
- Views: 5101
Convert eps to png, unable to load module without PATH set (Windows), work around
Hello all, First, OS is Windows 8.1 64 bit, installed is ImageMagick 7.0.1-3 and 6.8.0-8, setup without "Add application directory to your system path" set. I convert our EPS files with the command "%ProgramFiles%\ImageMagick-7.0.1-Q8\magick.exe" convert -verbose -debug All -colorspace sRGB -density ...
- 2011-12-01T07:06:15-07:00
- Forum: Bugs
- Topic: viewBox x and y not used at converting svg to png
- Replies: 1
- Views: 5636
viewBox x and y not used at converting svg to png
Hello I'm using the latest subversion trunk (rev. 6100). In my svg file I declared a viewBox with x and y coordinates, like 'viewBox="50 50 150 150"'. It seems that these coordinates were not used to convert the svg, only the width and height of the viewBox. After debugging the code I found the ...
- 2011-11-25T02:18:25-07:00
- Forum: Bugs
- Topic: Wrong Textposition after converting svg
- Replies: 4
- Views: 9004
Re: Wrong Textposition after converting svg
With the lastes trunk it works.
Thank you
Alex
Thank you
Alex
- 2011-11-24T09:13:23-07:00
- Forum: Bugs
- Topic: Wrong Textposition after converting svg
- Replies: 4
- Views: 9004
Re: Wrong Textposition after converting svg
I've debugged the latest version from the subversion trunk (rev. 6074). In file 'coders\svg.c' at line 2407 you changed from (void) FormatLocaleFile(svg_info->file,"text %g,%g '%s'\n", svg_info->bounds.x,svg_info->bounds.y,text); to (void) FormatLocaleFile(svg_info->file,"text 0,0 '%s'\n",text); I ...
- 2011-11-24T08:46:53-07:00
- Forum: Bugs
- Topic: Wrong image size after converting eps
- Replies: 5
- Views: 11275
Re: Wrong image size after converting eps
I've debugged the latest version from the subversion trunk (rev. 6074).
Now it works.
Thank You
Alex
Now it works.
Thank You
Alex
- 2011-11-23T08:03:41-07:00
- Forum: Bugs
- Topic: Wrong image size after converting eps
- Replies: 5
- Views: 11275
Re: Wrong image size after converting eps
Hello magick I've looked at your changes and found the new variable 'priority', good idea. But... with the new variable 'priority' you prefer the hi-res bounding box, but at line 688 (in file 'coders\ps.c') you round the page-size with page.width=(size_t) floor(hires_bounds.x2-hires_bounds.x1+0.5 ...
- 2011-11-23T07:39:20-07:00
- Forum: Bugs
- Topic: Wrong Textposition after converting svg
- Replies: 4
- Views: 9004
Wrong Textposition after converting svg
Hello I'm using ImageMagick-6.7.3-7 and Ghostscript 9.0.4. My svg-file looks like this: <?xml version="1.0" encoding="utf-8" ?> <svg version="1.1" x="0px" y="0px" width="250px" height="200px" viewBox="0 0 250 200" enable-background="new 0 0 250 200" space="preserve" xmlns="http://www.w3.org/2000/svg ...
- 2011-11-14T00:15:21-07:00
- Forum: Bugs
- Topic: Wrong image size after converting eps
- Replies: 5
- Views: 11275
Re: Wrong image size after converting eps
Thanks
Alex
Alex
- 2011-11-11T01:01:58-07:00
- Forum: Bugs
- Topic: Wrong image size after converting eps
- Replies: 5
- Views: 11275
Wrong image size after converting eps
Hello again ...still trying to convert an eps to a jpg. I'm using ImageMagick-6.7.3-4 and Ghostscript 9.0.4. My eps has an image embedded with the size 551x712 at 304dpi. With convert "test2.eps" "test2.jpg" the resulting jpg is an image with size 553x714, including the original 551x712 from the eps ...
- 2011-10-12T00:14:30-07:00
- Forum: Bugs
- Topic: Bug in coder jpeg, function 'WriteProfile'
- Replies: 1
- Views: 5484
Bug in coder jpeg, function 'WriteProfile'
Hello As I tryed to convert an eps to a jpg I've found this bug: ImageMagick-6.3.9-9 Ghostscript 9.0.4 In file 'coders\jpeg.c' at line 1649: xmp_profile=StringToStringInfo("http://ns.adobe.com/xap/1.0/"); ConcatenateStringInfo(xmp_profile,profile); GetStringInfoDatum(xmp_profile)[28]='\0'; After ...