When I rotate, image should have the same length/width, so, it should not resize, even if the image will be chopped off.
Thx.
Search found 4 matches
- 2016-01-13T11:26:49-07:00
- Forum: Developers
- Topic: Rotate image around it's center
- Replies: 7
- Views: 8979
- 2016-01-13T10:22:15-07:00
- Forum: Developers
- Topic: Rotate image around it's center
- Replies: 7
- Views: 8979
Re: Rotate image around it's center
@snibgo, I appreciate your effort, but I need a C++ style solution. For instance, here is a piece of code made by me that load, rotate and show an image in C++ (using Magick++, of course) : #include <Magick++.h> using namespace Magick; void CMFCApplicationView::OnDraw(CDC* pDC) { CMFCApplicationDoc ...
- 2016-01-13T08:17:13-07:00
- Forum: Developers
- Topic: Rotate image around it's center
- Replies: 7
- Views: 8979
Re: Rotate image around it's center
Sorry for not being clear, my english is not very good, I mean that when I rotate an image, the center of image should not be moved to another location, even if it does not fit in that place. This means that original image and rotated image should have the same center. This link shows you how an ...
- 2016-01-13T07:36:33-07:00
- Forum: Developers
- Topic: Rotate image around it's center
- Replies: 7
- Views: 8979
Rotate image around it's center
Hi All! - I need some help on a problem: I want to rotate an image around it's center but as far as I have seen I can't do this using Image methods. Actually it has a method "rotate(degree)", but it does a rotate like in this photo that I have attached (which is not Ok fo me). - Is there a way to do ...