Am 21.07.2011 um 18:41 schrieb Greg Olson-Hyde: > Hi, > > I am new to DynaPDF (still evaluating) and was wondering if it is possible to > change the opacity of an image? If it is could you please tell me the name of > the function so I can look it up in the Manual - I have looked but can't find > any reference.
Simply use an extended graphics state: // set graphics state, so the image gets 50% transparency as a whole e.FillAlpha = 0.5 dim ExtGState as integer = d.CreateExtGState(e) call d.SetExtGState(ExtGState) Greetings Christian -- Read our blog about news on our plugins: http://www.mbsplugins.de/ _______________________________________________ Mbsplugins_monkeybreadsoftware.info mailing list [email protected] https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info
