Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I rotate a png image in Delphi with preserving its transparency? I loaded it via TPNGObject. I'm then using Canvas.StretchDraw(MyRect, the TPNGObject) but I don't know how to rotate it.

share|improve this question
3  
I haven't used it for rotation, but you might try the freeware at www.graphics32.org if you don't get a better answer here. – Robert Frank Nov 22 '11 at 15:26
1  
I suspect this will be slow and painful in VCL, slow and easy in graphics32 + VCL, and fast and easy in Firemonkey (FMX) in XE2. – Warren P Nov 22 '11 at 17:41
1  
Following the link in this answer will lead to example code. – Sertac Akyuz Nov 22 '11 at 18:44

1 Answer

up vote 3 down vote accepted

The problem is that if you do a rotate using the Canvas, you will lose your transparency, as you noted with TPNGObject.

This is because the Canvas doesn't support transparency at the level required by a PNG image.

Instead, you must use specialized code to rotate the PNG image. Here is a link to a library of code that supports the TPNGObject, including a function to rotate it: http://cc.embarcadero.com/Item/25631

share|improve this answer
Thanks Marcus so much ..but do you have any idea how to fasten this code because he uses a for loop over the width and height. – Sara Saeed Nov 24 '11 at 7:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.