Dwg thumbnail view using .Net

Dwg thumbnail view using .Net

Anonymous
Not applicable
6,475 Views
7 Replies
Message 1 of 8

Dwg thumbnail view using .Net

Anonymous
Not applicable

Hi,

 

I can get the thumbnail view of the active document from below code

 

Document doc = Application.DocumentManager.MdiActiveDocument;
System.Drawing.Bitmap bit = doc.Database.ThumbnailBitmap;

 

 

How can i get the thumbnail view of the dwg file by passing filename means like below.

 

Document doc = .....(fileName)  :  here fileName is dwg file.

 

Please advise on this issue.

 

Regards,

Raman

 

 

 

 

0 Likes
Accepted solutions (1)
6,476 Views
7 Replies
Replies (7)
Message 2 of 8

Hallex
Advisor
Advisor

Google is your friend:

http://www.google.ru/search?ie=UTF-8&hl=ru&q=DisplayPreviewFromDwg

 

Here is one from my program:

 

http://forums.augi.com/showpost.php?p=1085953&postcount=2

 

Code Conveter

 

http://converter.telerik.com/

 

~'J'~

_____________________________________
C6309D9E0751D165D0934D0621DFF27919
0 Likes
Message 3 of 8

Alexander.Rivilis
Mentor
Mentor

http://www.theswamp.org/index.php?topic=30985.msg442803#msg442803

Відповідь корисна? Клікніть на "ВПОДОБАЙКУ" цім повідомленням! | Do you find the posts helpful? "LIKE" these posts!
Находите сообщения полезными? Поставьте "НРАВИТСЯ" этим сообщениям!
На ваше запитання відповіли? Натисніть кнопку "ПРИЙНЯТИ РІШЕННЯ" | Have your question been answered successfully? Click "ACCEPT SOLUTION" button.
На ваш вопрос успешно ответили? Нажмите кнопку "УТВЕРДИТЬ РЕШЕНИЕ"


Alexander Rivilis / Александр Ривилис / Олександр Рівіліс
Programmer & Teacher & Helper / Программист - Учитель - Помощник / Програміст - вчитель - помічник
Facebook | Twitter | LinkedIn
Expert Elite Member

0 Likes
Message 4 of 8

Anonymous
Not applicable

 

 

This code is good.

 

But i am using 2010. will it works?

 

Please advise me

 

Regards,

Raman

0 Likes
Message 5 of 8

Alfred.NESWADBA
Consultant
Consultant

Hi,

 

it's just copy&paste, compile and test .... so why not trying it?

 

And if you look to the code you'll see it does not use any AutoCAD-lib-functions. so it's independent from any AutoCAD-version (it just reads the icon-part of the image header)

 

- alfred -

------------------------------------------------------------------------------------
Alfred NESWADBA
ISH-Solutions GmbH / Ingenieur Studio HOLLAUS
www.ish-solutions.at ... blog.ish-solutions.at ... LinkedIn ... CDay 2026
------------------------------------------------------------------------------------

(not an Autodesk consultant)
0 Likes
Message 6 of 8

Anonymous
Not applicable

 

 

I am not looking for what you have suggested means using with out autocad.

 

I would like to use AutoCAD API for getting thumbnail. (Message 2).

 

Please advise.

 

Thanks is advance.....

0 Likes
Message 7 of 8

Alfred.NESWADBA
Consultant
Consultant
Accepted solution

Hi,

 

Why do you have to use the AutoCAD API if you can get the same result without it?

if you want to calculate sin(alpha) ... what could be the reason for doing that with a specific API from AutoCAD instead of the global Math-namespace?

 

Sorry if I bother you, I'd like to understand why doing something more complex that can be achieved in an easy way (ready to use and independet from any AutoCAD release).

 

- alfred -

------------------------------------------------------------------------------------
Alfred NESWADBA
ISH-Solutions GmbH / Ingenieur Studio HOLLAUS
www.ish-solutions.at ... blog.ish-solutions.at ... LinkedIn ... CDay 2026
------------------------------------------------------------------------------------

(not an Autodesk consultant)
Message 8 of 8

Anonymous
Not applicable

 

Thanks you very much... I do as you suggested...

 

-Raman

0 Likes