Message 1 of 4
Bug with function GenerateImage on Navisworks Manage 2024
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi i tried to create image by :
using (Bitmap viewBitmap = doc.ActiveView.GenerateImage(
ImageGenerationStyle.ScenePlusOverlay,
1024,
768,
true))
{
if (viewBitmap != null)
{
viewBitmap.Save(outputPath, ImageFormat.Png);
System.Diagnostics.Debug.WriteLine($"[ExportSingleClashImage] Image SAVED at {outputPath}");
return File.Exists(outputPath);
}
else
{
System.Diagnostics.Debug.WriteLine("[ExportSingleClashImage] viewBitmap is NULL");
}
}
for me it's important to have :
1) Overlays
2) Clipping Planes on
but overlays works, Clipping Planes Not
Thank you in advance for the help