Hi,
I have not yet found a solution. Could be my problem a small bug of the library?
Thanks
Search found 4 matches
- 2016-07-25T05:06:34-07:00
- Forum: Users
- Topic: load a PDF without antialiasing
- Replies: 5
- Views: 2440
- 2016-07-22T07:18:45-07:00
- Forum: Users
- Topic: load a PDF without antialiasing
- Replies: 5
- Views: 2440
Re: load a PDF without antialiasing
also:
does't work in my case...
Code: Select all
img->antiAlias(false);
- 2016-07-22T06:10:54-07:00
- Forum: Users
- Topic: load a PDF without antialiasing
- Replies: 5
- Views: 2440
Re: load a PDF without antialiasing
Probably GS has the option that I need. Because if I run:
convert -density 100 -background white -flatten +antialias input.pdf output.bmp
it works fine. Exactly what I need.
But I can't reproduce this in my c++ code.
Thanks
convert -density 100 -background white -flatten +antialias input.pdf output.bmp
it works fine. Exactly what I need.
But I can't reproduce this in my c++ code.
Thanks
- 2016-07-22T05:02:09-07:00
- Forum: Users
- Topic: load a PDF without antialiasing
- Replies: 5
- Views: 2440
load a PDF without antialiasing
Hi, I need convert a PDF into an image for my app developed in C++. I have no trouble to convert the PDF into the image but I need also to turn-off the antialias. It is possible? Here my simple code: int main( int argc, char ** argv) { InitializeMagick(*argv); Image * img = new Image(); img->density ...