Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Problem in printing the diagram (Read 1217 times)
Homam
Junior Member
**
Offline


I Love MindFusion!

Posts: 67
Joined: Feb 7th, 2012
Problem in printing the diagram
Sep 30th, 2012 at 1:38pm
Print Post  
I tried to print the diagram by this code:

Code (Java)
Select All
 view.PrintOptions.DocumentName = ProcessName;
            view.PrintOptions.EnableImages = true;
            view.PrintOptions.EnableInterior = true;
            view.PrintOptions.EnableShadows = true;
            view.PrintOptions.Scale = 100;
            view.PrintPreview(); 



The result is in the attached.
  

Capture_006.PNG ( 12 KB | 156 Downloads )
Capture_006.PNG
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Problem in printing the diagram
Reply #1 - Oct 1st, 2012 at 5:47am
Print Post  
This happens when MeasureUnit is set to Pixel since printers' pixels are much smaller. You will have to compensate for the higher printer resolution by setting larger PrintOptions.Scale, or otherwise switch to a logical unit such as Point. If you don't want to change the unit permanently, you could copy the diagram, change MeasureUnit on the copy and print it from a hidden view.

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint