Search found 4 matches

by milkyjing
2012-02-02T18:37:10-07:00
Forum: Magick++
Topic: translating a command line to magick++ concerning pattern
Replies: 7
Views: 25816

Re: translating a command line to magick++ concerning patter

The basic pattern:checkerboard is designed to be tiled. But when you tile that image onto a 640x480 canvas, the result is not necessarily an image that can also be tiled. The left edge and the right edge of checkerboard.png don't match properly when tiled. I'm not familair with Magick++ so I can't ...
by milkyjing
2012-02-01T19:40:34-07:00
Forum: Magick++
Topic: translating a command line to magick++ concerning pattern
Replies: 7
Views: 25816

Re: translating a command line to magick++ concerning patter

Both of these are in C but you should be able to figure out how to do the same thing in Magick++ See the last piece of code posted by user "fisheggs" in this thread: http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=9346 And in my "MagickWand Examples in C", se...
by milkyjing
2012-02-01T03:20:36-07:00
Forum: Magick++
Topic: translating a command line to magick++ concerning pattern
Replies: 7
Views: 25816

Re: translating a command line to magick++ concerning patter

Well, after reading the article on 'How to ask questions the smart way'. I strongly feel the need to add some more stuffs, mainly my own thinking towards the question. '-size' operator is one of the 'Input Settings' , with '-size 640x480', the image read from 'patterns\checkerboard.png' will be used...
by milkyjing
2012-01-31T22:36:03-07:00
Forum: Magick++
Topic: translating a command line to magick++ concerning pattern
Replies: 7
Views: 25816

translating a command line to magick++ concerning pattern

Hi there, I've got a problem when trying to translate a command line of IM to Magick++, though it is really a simple one: $ convert -size 640x480 pattern:checkerboard checkerboard.png I can understand how this script functions, but just cannot find an alternative way of doing it using Magick++. Can ...