高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】raster image import problem
raster image import problem
raster image import problem
i want to get the raster image's source file name, so i'm trying to get oddbrasterimagedef object id from oddbrasterimage object by such a following code.
------
oddbobjectid objectid = pimage->imagedefid();
if (objectid.isnull() || !objectid.isvalid() || objectid.iserased())
{
return;
}
oddbrasterimagedefptr pdef = objectid.safeopenobject();
------
but safeopenobject() method throws an exception(oderror @ 0x0013adf0).
this problem is also occurred in the odreadex sample project by attached dwg file.(in odreadex, oddbrasterimage::imagesize() method throws exception too, so i have avoided it by calling imagesize() with getcachedvalue=true.)
please teach me how to avoid this problem.
p.s.
my environment is visual studio .net 2003, dwgdirect version 2.04.01(lib type=vc2003mdd).
attached files
the file is invalid. it contains rasterimagedef object but has no image dictionary entry in named objects dictionary.
exactly the same problem was discussed here:
sergey slezkin
dear sergey,
i have understood.
thank you very much!
|