Search found 309 matches

by mkoppanen
2007-08-24T13:50:27-07:00
Forum: MagickWand
Topic: WIN: pseudo-format
Replies: 1
Views: 8362

WIN: pseudo-format

I've been trying to get a screenshot using the WIN: pseudo-format. How ever it seems that I am not going anywhere with this. WIN RW Select image from or display image to your computer screen Only supported under Microsoft Windows. Here is my test code: /* Screen Grabbing test */ #include <stdio.h> #...
by mkoppanen
2007-08-14T01:12:50-07:00
Forum: MagickWand
Topic: Setting point stroke size
Replies: 0
Views: 6331

Setting point stroke size

Seems like stroke width does not affect DrawPoint at all. This code results in 1x1 point here. Is it supposed to affect? MagickBooleanType status; MagickWand *magick_wand; PixelWand *pixel_wand; DrawingWand *drawing_wand; MagickWandGenesis(); magick_wand = NewMagickWand(); pixel_wand = NewPixelWand(...
by mkoppanen
2007-08-13T12:44:22-07:00
Forum: MagickWand
Topic: Rotating around a point
Replies: 2
Views: 10370

Rotating around a point

I know there is a DrawRotate function but I was wondering if it is possible to rotate an element around a certain point using the MagickWand API ? Currently all I have figured out is to do some translations and render the element on an transparent canvas and overlay that on the final image. Not very...
by mkoppanen
2007-07-23T14:22:52-07:00
Forum: IMagick
Topic: New ImageMagick / MagickWand extension for php
Replies: 9
Views: 33432

Re: New ImageMagick / MagickWand extension for php

Correct me if I am wrong but this happens in delegates.xml file. See: http://www.imagemagick.org/script/resources.php

--
Mikko Koppanen
by mkoppanen
2007-07-23T13:50:45-07:00
Forum: IMagick
Topic: New ImageMagick / MagickWand extension for php
Replies: 9
Views: 33432

Re: New ImageMagick / MagickWand extension for php

I removed all undefined exceptions in the newest release. Maybe it's not rolled into Windows builds yet. I assume that discussing imagick extension here is a bit off-topic ( I don't know what ImageMagick guys like that ? ). You should propably configure the delegate for the PDF format. I don't know ...
by mkoppanen
2007-07-18T00:48:38-07:00
Forum: MagickWand for PHP
Topic: Composite
Replies: 1
Views: 9619

Re: Composite

i have a small question. $image1 = new Imagick(); $image1->readImage("1.jpg"); $image2 = new Imagick(); $image2->readImage("2.jpg"); $imageDraw = new ImagickDraw(); $imageDraw->composite($COMPOSITE_OVER, 50,50,800,800,$image2); $imageDraw->render(); $image1->drawImage($imageDraw...
by mkoppanen
2007-06-12T02:39:01-07:00
Forum: MagickWand
Topic: Gradient filled primitives
Replies: 7
Views: 27394

Re: Gradient filled primitives

This is excellent news! In the current project I am using most of the functions in MagickWand api. The versions I am currently supporting ranges from 6.2.4 to the latest. So my question is that do you have a list somewhere where i can see what functions / constants / features was added in which vers...
by mkoppanen
2007-06-09T07:15:30-07:00
Forum: MagickWand
Topic: Gradient filled primitives
Replies: 7
Views: 27394

Re: Gradient filled primitives

So the support is planned then ? That sounds excellent!

Are you going to add support via existing API or add new functions for that ?

--
Mikko Koppanen
by mkoppanen
2007-06-09T07:08:16-07:00
Forum: MagickWand
Topic: Gradient filled primitives
Replies: 7
Views: 27394

Gradient filled primitives

Is it possible to create primitives ( polygons, rectangles and so on ) with gradient fill using ImageMagick MagickWand C API ?

--
Mikko Koppanen