高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】how to get a filename 9oddbrasterimage0 which is saved in ad
how to get a filename (oddbrasterimage) which is saved in ad
how to get a filename (oddbrasterimage) which is saved in adobe illustrator ?
hi. i'm young ju, lee. korean.
i saved a dwg file in adobe illustrator. (included bitmap image file)
i want to get a filename for bitmap image, but i couldn't.
please help me.
oddbobjectid id = dbimg->imagedefid();
oddbrasterimagedefptr pimgdef = id.safeopenobject(); // error occured.
could you post a sample dwg illustrating the problem?
sergey slezkin
thanks for reading my thread. please help me.
quote:
originally posted by sergey slezkin
could you post a sample dwg illustrating the problem?
thanks for reading my thread.
please help me.
attached files (5.3 kb, 5 views)
the file is incorrect and dd does not load rasterimagedef object. autocad's recover reports some cross-links.
but even autocad after saving the file to dxf looses information about image file name.
(image file name is stored in rasterimagedef object)
sergey slezkin
but i could get the object id of imagedef..
thank you for reply.
but i could get the object id of imagedef..
so is it possible to get the source name of image?
code:
oddbobjectid idimagedef = ...;
oddbrasterimagedefptr pimagedef= idimagedef.openobject();
if (!pimagedef.isnull())
{
odstring strfilename = pimagedef->sourcefilename();
}
sergey slezkin
|