Convert 3d model to tiff
Convert 3d model to tiff
(OP)
Hi everyone!
Can you help to convert UG 3d model to .tiff image using UG API?
Can you help to convert UG 3d model to .tiff image using UG API?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: Convert 3d model to tiff
John R. Baker, P.E.
Product 'Evangelist'
Product Design Solutions
Siemens PLM Software Inc.
Industry Sector
Cypress, CA
http://www.siemens.com/plm
http://www.plmworld.org/museum/
To an Engineer, the glass is twice as big as it needs to be.
RE: Convert 3d model to tiff
my C# code:
UFSession m_openSession;
UFDisp Disp = m_openSession.Disp;
UFDisp.ImageFormat im = UFDisp.ImageFormat.Tiff;
UFDisp.BackgroundColor bc = UFDisp.BackgroundColor.Original;
Disp.CreateImage("C:\\test2.tiff", im, bc);
...where I catch Exception like this:
"Attempted to read or write protected memory. This is often an indication that other memory has been corrupted.
"
What's wrong?