<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic get orientation from active Raster Image in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3571714#M14428</link>
    <description>&lt;P&gt;Dear ObjectArx Programmers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's me again and this time would ask you, why my function getRasterImageInfo is failing getting the Orientation from my active Raster Image (After pRastImg-&amp;gt;getOrientation(origin, u, v) all values are still empty).&lt;/P&gt;&lt;P&gt;I also found some intressting top on the Autodesk Dev Blog (&lt;A target="_blank" href="http://adndevblog.typepad.com/autocad/2012/05/finding-all-the-visible-raster-images-in-the-drawing.html)"&gt;http://adndevblog.typepad.com/autocad/2012/05/finding-all-the-visible-raster-images-in-the-drawing.html)&lt;/A&gt; but can't do it like this.&lt;BR /&gt;One of the problems: Where are datatype &lt;SPAN style="color: #2b91af; line-height: 140%;"&gt;Document,&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; line-height: 140%;"&gt;Database&lt;/SPAN&gt;&lt;SPAN style="line-height: 140%;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; line-height: 140%;"&gt;Editor&lt;/SPAN&gt; coming from? Could i use AcApDocument and AcDbDatabase instead? Thx a lot guys!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void getRasterImageInfo(AcGePoint3d&amp;amp; origin, AcGeVector3d&amp;amp; u, AcGeVector3d&amp;amp; v)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; AcDbBlockTable *pBT = NULL;&lt;BR /&gt;&amp;nbsp; AcDbBlockTableRecord *pBTR =NULL;&lt;BR /&gt;&amp;nbsp; AcDbBlockTableRecordIterator *pBTIter;&lt;BR /&gt;&amp;nbsp; Acad:: ErrorStatus es;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; AcApDocument *pDoc=acDocManager-&amp;gt;curDocument(); // Lock Document&lt;BR /&gt;&amp;nbsp; acDocManager-&amp;gt;lockDocument(pDoc,AcAp::kWrite);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; //acdbHostApplicationServices()-&amp;gt;workingDatabase()-&amp;gt;getBlockTable(pBT,AcDb::kForRead);&lt;BR /&gt;&amp;nbsp; AcDbDatabase* pDB = acdbHostApplicationServices()-&amp;gt;workingDatabase();&lt;BR /&gt;&amp;nbsp; es = pDB-&amp;gt;getSymbolTable(pBT, AcDb::kForRead);&lt;BR /&gt;&amp;nbsp; pBT-&amp;gt;getAt(ACDB_MODEL_SPACE,pBTR,AcDb::kForRead);&lt;BR /&gt;&amp;nbsp; pBTR-&amp;gt;newIterator(pBTIter);&lt;BR /&gt;&amp;nbsp; pBT-&amp;gt;close();&lt;BR /&gt;&amp;nbsp; pBTR-&amp;gt;close();&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; AcDbEntity *pEnt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; AcDbRasterImage *pRastImg;&lt;BR /&gt;&amp;nbsp; bool rasterFound = false;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; while (!(pBTIter-&amp;gt;done()))&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pBTIter-&amp;gt;getEntity(pEnt,AcDb::kForRead);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pRastImg = AcDbRasterImage::cast(pEnt);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(NULL != pRastImg)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rasterFound = true;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AcGeVector3d u;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AcGeVector3d v;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pRastImg-&amp;gt;getOrientation(origin, u, v);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pEnt-&amp;gt;close();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pBTIter-&amp;gt;step();&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; delete pBTIter;&lt;BR /&gt;&amp;nbsp; acDocManager-&amp;gt;unlockDocument(pDoc); // Unlock Document&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Aug 2012 13:02:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-08-09T13:02:51Z</dc:date>
    <item>
      <title>get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3571714#M14428</link>
      <description>&lt;P&gt;Dear ObjectArx Programmers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's me again and this time would ask you, why my function getRasterImageInfo is failing getting the Orientation from my active Raster Image (After pRastImg-&amp;gt;getOrientation(origin, u, v) all values are still empty).&lt;/P&gt;&lt;P&gt;I also found some intressting top on the Autodesk Dev Blog (&lt;A target="_blank" href="http://adndevblog.typepad.com/autocad/2012/05/finding-all-the-visible-raster-images-in-the-drawing.html)"&gt;http://adndevblog.typepad.com/autocad/2012/05/finding-all-the-visible-raster-images-in-the-drawing.html)&lt;/A&gt; but can't do it like this.&lt;BR /&gt;One of the problems: Where are datatype &lt;SPAN style="color: #2b91af; line-height: 140%;"&gt;Document,&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; line-height: 140%;"&gt;Database&lt;/SPAN&gt;&lt;SPAN style="line-height: 140%;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; line-height: 140%;"&gt;Editor&lt;/SPAN&gt; coming from? Could i use AcApDocument and AcDbDatabase instead? Thx a lot guys!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void getRasterImageInfo(AcGePoint3d&amp;amp; origin, AcGeVector3d&amp;amp; u, AcGeVector3d&amp;amp; v)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; AcDbBlockTable *pBT = NULL;&lt;BR /&gt;&amp;nbsp; AcDbBlockTableRecord *pBTR =NULL;&lt;BR /&gt;&amp;nbsp; AcDbBlockTableRecordIterator *pBTIter;&lt;BR /&gt;&amp;nbsp; Acad:: ErrorStatus es;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; AcApDocument *pDoc=acDocManager-&amp;gt;curDocument(); // Lock Document&lt;BR /&gt;&amp;nbsp; acDocManager-&amp;gt;lockDocument(pDoc,AcAp::kWrite);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; //acdbHostApplicationServices()-&amp;gt;workingDatabase()-&amp;gt;getBlockTable(pBT,AcDb::kForRead);&lt;BR /&gt;&amp;nbsp; AcDbDatabase* pDB = acdbHostApplicationServices()-&amp;gt;workingDatabase();&lt;BR /&gt;&amp;nbsp; es = pDB-&amp;gt;getSymbolTable(pBT, AcDb::kForRead);&lt;BR /&gt;&amp;nbsp; pBT-&amp;gt;getAt(ACDB_MODEL_SPACE,pBTR,AcDb::kForRead);&lt;BR /&gt;&amp;nbsp; pBTR-&amp;gt;newIterator(pBTIter);&lt;BR /&gt;&amp;nbsp; pBT-&amp;gt;close();&lt;BR /&gt;&amp;nbsp; pBTR-&amp;gt;close();&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; AcDbEntity *pEnt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; AcDbRasterImage *pRastImg;&lt;BR /&gt;&amp;nbsp; bool rasterFound = false;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; while (!(pBTIter-&amp;gt;done()))&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pBTIter-&amp;gt;getEntity(pEnt,AcDb::kForRead);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pRastImg = AcDbRasterImage::cast(pEnt);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(NULL != pRastImg)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rasterFound = true;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AcGeVector3d u;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AcGeVector3d v;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pRastImg-&amp;gt;getOrientation(origin, u, v);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pEnt-&amp;gt;close();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pBTIter-&amp;gt;step();&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; delete pBTIter;&lt;BR /&gt;&amp;nbsp; acDocManager-&amp;gt;unlockDocument(pDoc); // Unlock Document&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2012 13:02:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3571714#M14428</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-09T13:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3571982#M14429</link>
      <description>&lt;P&gt;You don't say what the return value is from pRastImg-&amp;gt;getOrientation(). That should be the first clue as to the reason for the failure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It sounds like the blog post you refer to is demonstrating .NET (managed) code, probably in the C# language.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2012 14:29:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3571982#M14429</guid>
      <dc:creator>owenwengerd</dc:creator>
      <dc:date>2012-08-09T14:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3572000#M14430</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;getOrientation should return 1 origin AcGePoint3d and 2 AcGeVector3ds&amp;nbsp; (u &amp;amp; v) see:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://docs.autodesk.com/ACDMAC/2011/ENU/ObjectARX%20Reference/index.html?frmname=topic&amp;amp;frmfile=AcDbRasterImage__getOrientation@AcGePoint3d_@AcGeVector3d_@AcGeVector3d_@const.html"&gt;http://docs.autodesk.com/ACDMAC/2011/ENU/ObjectARX%20Reference/index.html?frmname=topic&amp;amp;frmfile=AcDbRasterImage__getOrientation@AcGePoint3d_@AcGeVector3d_@AcGeVector3d_@const.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It will give me all placement information of that Raster Image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, that Blogpost is C# but what's the equivalent? For example i dont have any clue which "editor" class to use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thx!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2012 14:34:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3572000#M14430</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-09T14:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3572080#M14431</link>
      <description>&lt;P&gt;I meant the error return value of getOrientation(), but I just checked and it is a void return, so no error code is returned. In C#, the Editor class wraps AcEditor. Document wraps AcApDocument, Database wraps AcDbDatabase, etc., but there is no direct translation from C# to C++.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2012 14:57:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3572080#M14431</guid>
      <dc:creator>owenwengerd</dc:creator>
      <dc:date>2012-08-09T14:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3577382#M14432</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i was hoping to find an similar solution for my c++ Code..&lt;/P&gt;&lt;P&gt;But to my code again:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is not running into the line:while (!(pBTIter-&amp;gt;done()))&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;For your information, this code is a few years old and programmed by an other programmer.&lt;/P&gt;&lt;P&gt;Trying to use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; pBTIter-&amp;gt;getEntity(pEnt,AcDb::kForRead);&lt;BR /&gt;&amp;nbsp; pRastImg = AcDbRasterImage::cast(pEnt);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is not possible, bacause &amp;nbsp; pBTIter-&amp;gt;getEntity(pEnt,AcDb::kForRead); won't work and would give an exception.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;How would you guys manage to get the active Raster Image?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2012 08:47:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3577382#M14432</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-14T08:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3577876#M14433</link>
      <description>&lt;P&gt;There is no such thing as "active" raster image. It sounds like you have not done any basic debugging of your code and don't really know where it fails. You should start by checking the return values of every function call and determining where the results&amp;nbsp;are first different than&amp;nbsp;expected.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2012 14:26:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3577876#M14433</guid>
      <dc:creator>owenwengerd</dc:creator>
      <dc:date>2012-08-14T14:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3601236#M14434</link>
      <description>&lt;P&gt;Hi, after some vacation i tried to fix that problem by checking the return values of every function call, like you said.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Everything went well and returned Acad:: eOk so far.&lt;BR /&gt;But he wont go in that iteration:&lt;/P&gt;&lt;P&gt;while (!(pBTIter-&amp;gt;done())) because the Iterator is already "done()" from begining.&lt;/P&gt;&lt;P&gt;In my active Workspace there is one Raster Image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just need that orientation vector informations, but i dont know how to do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope you can help or at least give me an alternative way to do this.&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Aug 2012 11:24:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3601236#M14434</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-30T11:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3602454#M14435</link>
      <description>&lt;P&gt;I think the most likely explanation is&amp;nbsp;that you are confused about which space your image is in; or possibly&amp;nbsp;you&amp;nbsp;are mistaken about&amp;nbsp;which database is the active document when this code executes.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Aug 2012 01:11:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3602454#M14435</guid>
      <dc:creator>owenwengerd</dc:creator>
      <dc:date>2012-08-31T01:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3605942#M14436</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/36306"&gt;@owenwengerd&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;I think the most likely explanation is&amp;nbsp;that you are confused about which space your image is in; or possibly&amp;nbsp;you&amp;nbsp;are mistaken about&amp;nbsp;which database is the active document when this code executes.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;first thank you for answering me that quick.&lt;/P&gt;&lt;P&gt;Just attached a picture, where you can see that 1 AcDbRasterImag is in that active dwg.&lt;/P&gt;&lt;P&gt;I just couldn't figure out some other way to get these orientations datas.&lt;/P&gt;&lt;P&gt;Most of the examples i found get Informations over workingDatabase, getBlockTable and an Iterator.&lt;/P&gt;&lt;P&gt;There must be some changes in API, which broke that way or i am missing something important.&lt;/P&gt;&lt;P&gt;I would be so thankful to have a solution for this problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2012 12:30:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3605942#M14436</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-04T12:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3605960#M14437</link>
      <description>&lt;P&gt;I'm not familiar with&amp;nbsp;Raster Design. I doubt that it uses AcDbRasterImage.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2012 12:35:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3605960#M14437</guid>
      <dc:creator>owenwengerd</dc:creator>
      <dc:date>2012-09-04T12:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: get orientation from active Raster Image</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3605974#M14438</link>
      <description>&lt;P&gt;Normally it should be the same way, as if you would read orientations from a line or something.&lt;/P&gt;&lt;P&gt;And it must be AcDbRasterImage, because I have created that Raster Image before.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But in this second fuction I dont have that Image ID, so I have to read its information another way.&lt;/P&gt;&lt;P&gt;Thanks for your efforts anyways.&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2012 12:40:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/get-orientation-from-active-raster-image/m-p/3605974#M14438</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-04T12:40:21Z</dc:date>
    </item>
  </channel>
</rss>

