dwf file save to dwf file as dwfoption(rotation) no effect
using (var img = Aspose.CAD.Image.Load(stream))
{
DwfOptions options = new DwfOptions();
options.Rotation = Aspose.CAD.RotateFlipType.Rotate90FlipNone;
img.Save(tempFileName, options);
}