Using AcGiWorldGeometry::image() in custom entities,how can images be displayed when it's proxy entity?

dziwve67853
Advocate

Using AcGiWorldGeometry::image() in custom entities,how can images be displayed when it's proxy entity?

dziwve67853
Advocate
Advocate

I rewrote the saveas function, but it didn't work.

@daniel_cadext @tbrammer @Alexander.Rivilis 

0 Likes
Reply
Accepted solutions (2)
932 Views
24 Replies
Replies (24)

dziwve67853
Advocate
Advocate

May I ask if there is an answer to this question?

0 Likes

moogalm
Autodesk Support
Autodesk Support
Accepted solution

Hi,

Yes, this is possible, here is the minimal code that I used to test it now.

First, let's define a custom entity.

 

 

class ImageWorldDraw : public AcDbEntity
{
public :
    ACRX_DECLARE_MEMBERS(ImageWorldDraw);
    ImageWorldDraw();
    ~ImageWorldDraw();
    virtual Adesk::Boolean    subWorldDraw(AcGiWorldDraw*);
    virtual Acad::ErrorStatus dwgInFields(AcDbDwgFiler* filer);
    virtual Acad::ErrorStatus dwgOutFields(AcDbDwgFiler* filer) const;
    virtual void saveAs(AcGiWorldDraw* mode, AcDb::SaveType st);
private:
    std::unique_ptr<AcGiPixelBGRA32[]> m_imageSourceData;
};

 

 

Now, let's implement the custom entity.

 

 

ACRX_DXF_DEFINE_MEMBERS(ImageWorldDraw, AcDbEntity,
	AcDb::kDHL_CURRENT, AcDb::kMReleaseCurrent,
	0, IMAGE_WORLD_DRAW, ImgSamp);
ImageWorldDraw::ImageWorldDraw()
{

}

ImageWorldDraw::~ImageWorldDraw()
{
}

Adesk::Boolean ImageWorldDraw::subWorldDraw(AcGiWorldDraw* mode)
{
    const int imageWidth = 100; 
    const int imageHeight = 200;
    const int imageSize = imageWidth * imageHeight;

    // Allocate and fill image data if not already set
    if (!m_imageSourceData)
    {
        m_imageSourceData = std::make_unique<AcGiPixelBGRA32[]>(imageSize);
        for (int i = 0; i < imageSize; ++i)
        {
            //Setting a gradient effect
            m_imageSourceData[i].setRGBA((i % imageWidth) * 255 / imageWidth, // Red
                (i / imageWidth) * 255 / imageHeight, // Green
                128,                                // Blue
                255);                               // Alpha
        }
    }

    // Use the image data to create an AcGiImageBGRA32 object
    AcGiImageBGRA32 imageSource(imageWidth, imageHeight, m_imageSourceData.get());

    // Define image placement and size in world coordinates
    AcGePoint3d position(4.0, 5.0, 6.0);
    Adesk::UInt32 width = 200;           
    Adesk::UInt32 height = 400;         
    AcGeVector3d u(width, 0.0, 0.0);     // Horizontal vector
    AcGeVector3d v(0.0, height, 0.0);    // Vertical vector
    AcGiGeometry::TransparencyMode transparencyMode = AcGiGeometry::kTransparencyOff;

    // Draw the image
    return mode->rawGeometry()->image(imageSource, position, u, v, transparencyMode);
}



Acad::ErrorStatus ImageWorldDraw::dwgInFields(AcDbDwgFiler* filer)
{
    assertWriteEnabled();
    Acad::ErrorStatus es = AcDbEntity::dwgInFields(filer);
    if (es != Acad::eOk)
        return es;

    // Read image dimensions
    Adesk::UInt32 width, height;
    filer->readUInt32(&width);
    filer->readUInt32(&height);

    // Read image data
    const size_t imageSize = width * height;
    if (imageSize > 0)
    {
        m_imageSourceData = std::make_unique<AcGiPixelBGRA32[]>(imageSize);
        for (size_t i = 0; i < imageSize; ++i)
        {
            filer->readBytes(&m_imageSourceData[i], sizeof(AcGiPixelBGRA32));
        }
    }

    return filer->filerStatus();
}

Acad::ErrorStatus ImageWorldDraw::dwgOutFields(AcDbDwgFiler* filer) const
{
    Acad::ErrorStatus es = AcDbEntity::dwgOutFields(filer);
    if (es != Acad::eOk)
        return es;

    // Write image dimensions
    Adesk::UInt32 width = 100;  
    Adesk::UInt32 height = 200;
    filer->writeUInt32(width);
    filer->writeUInt32(height);

    // Write image data
    const size_t imageSize = width * height;
    if (imageSize > 0 && m_imageSourceData)
    {
        for (size_t i = 0; i < imageSize; ++i)
        {
            filer->writeBytes(&m_imageSourceData[i], sizeof(AcGiPixelBGRA32));
        }
    }

    return filer->filerStatus();
}

void ImageWorldDraw::saveAs(AcGiWorldDraw* mode, AcDb::SaveType st)
{
    if (st == AcDb::SaveType::k2018Save)
    {
        AcGePoint3d position(4.0, 5.0, 6.0);
        Adesk::UInt32 width = 100;
        Adesk::UInt32 height = 200;
        AcGeVector3d u(width, 0.0, 0.0);
        AcGeVector3d v(0.0, height, 0.0);
        AcGiGeometry::TransparencyMode transparencyMode = AcGiGeometry::kTransparencyOff;

        if (m_imageSourceData)
        {
            AcGiImageBGRA32 imageSource(width, height, m_imageSourceData.get());
            mode->rawGeometry()->image(imageSource, position, u, v, transparencyMode);
        }
    }
}

 

 

Now, write the driver code to call over custom entity -


 

 

void imageTest() {

  ImageWorldDraw* pImageWorldDraw = new ImageWorldDraw;
  AcDbObjectId imageOID;
  Acad::ErrorStatus es = postToDatabase(pImageWorldDraw, imageOID);
  if (es != Acad::eOk) {
      acutPrintf(_T("\nFailed to post the image to the database"));
      delete pImageWorldDraw;
      return;
  }
  pImageWorldDraw->close();}

 

 

 

 

Compile everything, load the DBX, and run the command imagetest. You should see a gradient image. Save the drawing in the 2018 format.

Close AutoCAD.
Do not load the DBX; simply open the drawing. You should see something similar.

Note: The image pixel data is being stored in a buffer, which will increase the size of the drawing.

 

moogalm_0-1737463783325.png

 




 

 

dziwve67853
Advocate
Advocate

The code is working properly. If the dwg version is lower than 2018 and cannot be displayed, does st==AcDb:: SaveType:: k2018Save have to be the dwg version of 2018 to be displayed?

0 Likes

moogalm
Autodesk Support
Autodesk Support

Yes, and make sure if DBX is also on current drawing format which is 2018.
If you want to support previous versions, make DBX is catered to that.

This macro caters DBX to current version of drawing.

ACRX_DXF_DEFINE_MEMBERS(
    ImageWorldDraw,
    AcDbEntity,
    AcDb::kDHL_CURRENT,
    AcDb::kMReleaseCurrent,
    0,
    IMAGE_WORLD_DRAW,
    ImgSamp);

And, accordingly, you may have to implement for other save types too.

0 Likes

dziwve67853
Advocate
Advocate

The proxy entity can only be displayed normally if the CAD version is greater than 2010.

0 Likes

moogalm
Autodesk Support
Autodesk Support

You mean to say, if savetype > k2010, ie. it is working for only k2013Save, k2018Save ?
Can you please elaborate, if I understood incorrectly.

0 Likes

dziwve67853
Advocate
Advocate

int width, height, channels;
unsigned char* data = stbi_load(imgPath, &width, &height, &channels, STBI_rgb_alpha);
if (data)
{
    m_width = width;m_height = height;
    size_t dataSize = width * height * STBI_rgb_alpha;
    m_Source = new unsigned char[dataSize];
    memcpy(m_Source,data,dataSize);

    stbi_image_free(data);
}

for (int y = 0; y < m_height; ++y)
{
    int srcRowIndex = (m_height- 1 - y) * m_width * 4;
    for (int x = 0; x < m_width ; ++x)
    {
        int srcIndex = srcRowIndex + x * 4;
        m_imageData[y * m_width + x].setBGRA(m_Source [srcIndex + 2], m_Source [srcIndex + 1], m_Source [srcIndex + 0], m_Source [srcIndex + 3]);
    }
}
AcGiImageBGRA32 imageSource(m_width , m_curH, m_imageData);
mode->geometry().image(imageSource, position, u, v, AcGiGeometry::kTransparency8Bit);

 

I use stb_image to read the 1234.bmp file, and the displayed image has too obvious pixelation.
2025-01-21_225626.png

 

How can it be like a raster image or ole image?

 

2025-01-21_225830.png

 

0 Likes

Kyudos
Collaborator
Collaborator

You can use AcDbDwgFiler::readBytes and AcDbDwgFiler::writeBytes to store files directly inside your custom objects - so you could store the image file directly, rather than the bitmap data. Of course, your DBX would need to be able to extract and reconstitute it so you'd need to store the original name and size too.

0 Likes

dziwve67853
Advocate
Advocate

What I mean is the user's CAD version, not the version of the DWG file. When the user's version is less than CAD2010, images are not displayed in the proxy entity.

0 Likes

dziwve67853
Advocate
Advocate

How can it be like a raster image or ole image? The current display effect is not as good as raster images or OLE images in CAD.

0 Likes

Kyudos
Collaborator
Collaborator

You could extract the image file and insert it as a raster image... but that's a lot of work. Is there a reason why you want a raster as the proxy representation of your object? Depending on what your object does, is it not easier to attach extra properties to a raster image in the first place?

0 Likes

dziwve67853
Advocate
Advocate

Can AcGiWorldGeometry:: image use Atil:: Is Image * used as a parameter?
My goal is to be able to view OLE images as they are when sent to others, but I cannot insert OLE images through programming methods and can only use UI interaction.

0 Likes

moogalm
Autodesk Support
Autodesk Support

No, you can't use Atil in AcGiWorldGeomerty.
What is the problem you are trying to solve my understanding is you want display proxy graphics for images when your DBX is absent.
Yes, using AcGiWorldGemetry with there will be pixelated beyond certain zoom level.

I tried with OpenCV to read bitmap and compute Pixel data and ATIL, I don't see much difference.

moogalm_0-1737555603525.png

 





0 Likes

moogalm
Autodesk Support
Autodesk Support

Here is the code that I have played to implement both proxy graphics for image and ATIL based implementation.

 

AutoCAD Custom Raster Image Handling: Embedding and Display Techniques 

 

 

 

0 Likes

Kyudos
Collaborator
Collaborator
Accepted solution

I don't what to negate all the efforts being put into 'graphics in proxy objects', but you can create the OLE objects in code, despite what the documentation says:

 

 

//------------------------------------------------------------------------------
AcDbObjectId InsertOLEObject(CString sSourceFile, AcDbExtents* pExtents)
//------------------------------------------------------------------------------
{
    // Using the given file, create an OLE object and insert it into the design at the user specified size and position
    Acad::ErrorStatus es = Acad::eOk;
    AcDbObjectId OLEid = AcDbObjectId::kNull;

    AcDbTransactionManager* pTM = acdbTransactionManager;

    if (pTM != NULL)
    {
        pTM->startTransaction();

        AcDbOle2Frame* pNewFrame = new AcDbOle2Frame();
        pNewFrame->setDatabaseDefaults();

        AcDbDatabase* db = acdbHostApplicationServices()->workingDatabase();

        AcDbBlockTable* blockTable;
        es = db->getBlockTable(blockTable, AcDb::kForRead);

        AcDbBlockTableRecord* modelSpace;
        es = blockTable->getAt(ACDB_MODEL_SPACE, modelSpace, AcDb::kForWrite);

        if (es == Acad::eWasOpenForWrite || es == Acad::eWasOpenForRead)
        {
            modelSpace = pApp->GetTableRecord();
        }

        es = modelSpace->appendAcDbEntity(pNewFrame);
        es = acdbTransactionManager->addNewlyCreatedDBRObject(pNewFrame);

        es = modelSpace->close();
        es = blockTable->close();

        AcApDocument* pActiveDoc = acDocManager->mdiActiveDocument();
        COleDocument* pDoc = (COleDocument*)pActiveDoc->cDoc();

        COleClientItem* pItem = new COleClientItem(pDoc);

        if (pItem->CreateFromFile(sSourceFile))
        {
            es = pNewFrame->setOleClientItem(pItem);

            CSize size(0, 0);
            if (pItem->GetCachedExtent(&size))
            {
                // OLE returns the extent in HIMETRIC units -- we need pixels
                CClientDC dc(NULL);
                dc.HIMETRICtoDP(&size);
            }

            double dRatio = (double)size.cy / (double)size.cx;

            es = pNewFrame->downgradeOpen();
            es = pNewFrame->upgradeOpen();

            CRectangle3d rect3d;

            // Get user placement, using the ratio we've just established
            if (pExtents != NULL)
            {
                // If we have a size, we'll use the width specified and adjust the height base on the calculated ratio
                // We'll keep the top left as the anchor position
                AcGePoint3d maxPt = pExtents->maxPoint();
                AcGePoint3d minPt = pExtents->minPoint();
                if (fabs(maxPt.x - minPt.x) > 0)
                {
                    double dWidth = maxPt.x - minPt.x;
                    rect3d.upLeft = AcGePoint3d(minPt.x, maxPt.y, 0.0L);
                    rect3d.upRight = AcGePoint3d(maxPt.x, maxPt.y, 0.0L);
                    rect3d.lowLeft = AcGePoint3d(minPt.x, maxPt.y - (dWidth * dRatio), 0.0L);
                    rect3d.lowRight = AcGePoint3d(maxPt.x, maxPt.y - (dWidth * dRatio), 0.0L);
                }
            }
            else
            {
                RectJig* pJig = new RectJig(dRatio);
                if (pJig != NULL)
                {
                    if (pJig->DoJig())
                    {
                        // Get size/position, same for everything
                        AcGePoint3d sp, ep, sp_wcs, ep_wcs;
                        if (pJig->GetRectPoints(sp, ep))
                        {
                            // Ensure we have something sensible
                            if (fabs(ep.x - sp.x) > 0 && fabs(ep.y - sp.y) > 0)
                            {
                                acdbUcs2Wcs(asDblArray(sp), asDblArray(sp_wcs), false);
                                acdbUcs2Wcs(asDblArray(ep), asDblArray(ep_wcs), false);

                                // Set the insert point
                                pNewFrame->setLocation(sp_wcs);

                                // Create the rectangle based on the size from the server
                                rect3d.lowLeft = sp_wcs;
                                rect3d.lowRight = sp_wcs;
                                rect3d.lowRight.x = ep_wcs.x;
                                rect3d.upLeft = sp_wcs;
                                rect3d.upLeft.y = ep_wcs.y;
                                rect3d.upRight = ep_wcs;
                            }
                        }
                    }

                    delete pJig;
                }
            }

            // Set the position
            pNewFrame->setPosition(rect3d);
            OLEid = pNewFrame->objectId();
            pItem->Close();
        }

        // Clean up
        es = pNewFrame->close();

        es = pTM->endTransaction();
    }

    return OLEid;
}

 

 

 

dziwve67853
Advocate
Advocate

2025-01-23_134224.png

The result obtained from the above code is like this. It seems that it is not possible to directly create AcDbOle2Frame to insert OLE images, only the Insert menu can be used to add them. You can use the attached image to test it.

0 Likes

Kyudos
Collaborator
Collaborator

As for any OLE object, you need to have an OLE server registered as the handler for BMP files. Set your files to open with MS Paint.


@dziwve67853 wrote:

2025-01-23_134224.png

The result obtained from the above code is like this. It seems that it is not possible to directly create AcDbOle2Frame to insert OLE images, only the Insert menu can be used to add them. You can use the attached image to test it.


 

0 Likes

dziwve67853
Advocate
Advocate

Set your files to open with MS Paint.

Is there a way to implement it through programming code instead of manually opening the image with MS Paint?

0 Likes

Kyudos
Collaborator
Collaborator

The 'CreateFromFile' method uses the Windows file association to create the OLE object. I guess you could do that in code, then restore it afterwards. You might also look at using 'CreateFromClipboard' instead, but getting  the file onto the clipboard is a  mission in itself...

0 Likes

Type a product name

______
icon-svg-close-thick

Cookie preferences

Your privacy is important to us and so is an optimal experience. To help us customize information and build applications, we collect data about your use of this site.

May we collect and use your data?

Learn more about the Third Party Services we use and our Privacy Statement.

Strictly necessary – required for our site to work and to provide services to you

These cookies allow us to record your preferences or login information, respond to your requests or fulfill items in your shopping cart.

Improve your experience – allows us to show you what is relevant to you

These cookies enable us to provide enhanced functionality and personalization. They may be set by us or by third party providers whose services we use to deliver information and experiences tailored to you. If you do not allow these cookies, some or all of these services may not be available for you.

Customize your advertising – permits us to offer targeted advertising to you

These cookies collect data about you based on your activities and interests in order to show you relevant ads and to track effectiveness. By collecting this data, the ads you see will be more tailored to your interests. If you do not allow these cookies, you will experience less targeted advertising.

icon-svg-close-thick

THIRD PARTY SERVICES

Learn more about the Third-Party Services we use in each category, and how we use the data we collect from you online.

icon-svg-hide-thick

icon-svg-show-thick

Strictly necessary – required for our site to work and to provide services to you

Qualtrics
We use Qualtrics to let you give us feedback via surveys or online forms. You may be randomly selected to participate in a survey, or you can actively decide to give us feedback. We collect data to better understand what actions you took before filling out a survey. This helps us troubleshoot issues you may have experienced. Qualtrics Privacy Policy
Akamai mPulse
We use Akamai mPulse to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Akamai mPulse Privacy Policy
Digital River
We use Digital River to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Digital River Privacy Policy
Dynatrace
We use Dynatrace to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Dynatrace Privacy Policy
Khoros
We use Khoros to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Khoros Privacy Policy
Launch Darkly
We use Launch Darkly to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Launch Darkly Privacy Policy
New Relic
We use New Relic to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. New Relic Privacy Policy
Salesforce Live Agent
We use Salesforce Live Agent to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Salesforce Live Agent Privacy Policy
Wistia
We use Wistia to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Wistia Privacy Policy
Tealium
We use Tealium to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Tealium Privacy Policy
Upsellit
We use Upsellit to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Upsellit Privacy Policy
CJ Affiliates
We use CJ Affiliates to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. CJ Affiliates Privacy Policy
Commission Factory
We use Commission Factory to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Commission Factory Privacy Policy
Google Analytics (Strictly Necessary)
We use Google Analytics (Strictly Necessary) to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Google Analytics (Strictly Necessary) Privacy Policy
Typepad Stats
We use Typepad Stats to collect data about your behaviour on our sites. This may include pages you’ve visited. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our platform to provide the most relevant content. This allows us to enhance your overall user experience. Typepad Stats Privacy Policy
Geo Targetly
We use Geo Targetly to direct website visitors to the most appropriate web page and/or serve tailored content based on their location. Geo Targetly uses the IP address of a website visitor to determine the approximate location of the visitor’s device. This helps ensure that the visitor views content in their (most likely) local language.Geo Targetly Privacy Policy
SpeedCurve
We use SpeedCurve to monitor and measure the performance of your website experience by measuring web page load times as well as the responsiveness of subsequent elements such as images, scripts, and text.SpeedCurve Privacy Policy
Qualified
Qualified is the Autodesk Live Chat agent platform. This platform provides services to allow our customers to communicate in real-time with Autodesk support. We may collect unique ID for specific browser sessions during a chat. Qualified Privacy Policy

icon-svg-hide-thick

icon-svg-show-thick

Improve your experience – allows us to show you what is relevant to you

Google Optimize
We use Google Optimize to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Google Optimize Privacy Policy
ClickTale
We use ClickTale to better understand where you may encounter difficulties with our sites. We use session recording to help us see how you interact with our sites, including any elements on our pages. Your Personally Identifiable Information is masked and is not collected. ClickTale Privacy Policy
OneSignal
We use OneSignal to deploy digital advertising on sites supported by OneSignal. Ads are based on both OneSignal data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that OneSignal has collected from you. We use the data that we provide to OneSignal to better customize your digital advertising experience and present you with more relevant ads. OneSignal Privacy Policy
Optimizely
We use Optimizely to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Optimizely Privacy Policy
Amplitude
We use Amplitude to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Amplitude Privacy Policy
Snowplow
We use Snowplow to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Snowplow Privacy Policy
UserVoice
We use UserVoice to collect data about your behaviour on our sites. This may include pages you’ve visited. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our platform to provide the most relevant content. This allows us to enhance your overall user experience. UserVoice Privacy Policy
Clearbit
Clearbit allows real-time data enrichment to provide a personalized and relevant experience to our customers. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID.Clearbit Privacy Policy
YouTube
YouTube is a video sharing platform which allows users to view and share embedded videos on our websites. YouTube provides viewership metrics on video performance. YouTube Privacy Policy

icon-svg-hide-thick

icon-svg-show-thick

Customize your advertising – permits us to offer targeted advertising to you

Adobe Analytics
We use Adobe Analytics to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Adobe Analytics Privacy Policy
Google Analytics (Web Analytics)
We use Google Analytics (Web Analytics) to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Google Analytics (Web Analytics) Privacy Policy
AdWords
We use AdWords to deploy digital advertising on sites supported by AdWords. Ads are based on both AdWords data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that AdWords has collected from you. We use the data that we provide to AdWords to better customize your digital advertising experience and present you with more relevant ads. AdWords Privacy Policy
Marketo
We use Marketo to send you more timely and relevant email content. To do this, we collect data about your online behavior and your interaction with the emails we send. Data collected may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, email open rates, links clicked, and others. We may combine this data with data collected from other sources to offer you improved sales or customer service experiences, as well as more relevant content based on advanced analytics processing. Marketo Privacy Policy
Doubleclick
We use Doubleclick to deploy digital advertising on sites supported by Doubleclick. Ads are based on both Doubleclick data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Doubleclick has collected from you. We use the data that we provide to Doubleclick to better customize your digital advertising experience and present you with more relevant ads. Doubleclick Privacy Policy
HubSpot
We use HubSpot to send you more timely and relevant email content. To do this, we collect data about your online behavior and your interaction with the emails we send. Data collected may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, email open rates, links clicked, and others. HubSpot Privacy Policy
Twitter
We use Twitter to deploy digital advertising on sites supported by Twitter. Ads are based on both Twitter data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Twitter has collected from you. We use the data that we provide to Twitter to better customize your digital advertising experience and present you with more relevant ads. Twitter Privacy Policy
Facebook
We use Facebook to deploy digital advertising on sites supported by Facebook. Ads are based on both Facebook data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Facebook has collected from you. We use the data that we provide to Facebook to better customize your digital advertising experience and present you with more relevant ads. Facebook Privacy Policy
LinkedIn
We use LinkedIn to deploy digital advertising on sites supported by LinkedIn. Ads are based on both LinkedIn data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that LinkedIn has collected from you. We use the data that we provide to LinkedIn to better customize your digital advertising experience and present you with more relevant ads. LinkedIn Privacy Policy
Yahoo! Japan
We use Yahoo! Japan to deploy digital advertising on sites supported by Yahoo! Japan. Ads are based on both Yahoo! Japan data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Yahoo! Japan has collected from you. We use the data that we provide to Yahoo! Japan to better customize your digital advertising experience and present you with more relevant ads. Yahoo! Japan Privacy Policy
Naver
We use Naver to deploy digital advertising on sites supported by Naver. Ads are based on both Naver data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Naver has collected from you. We use the data that we provide to Naver to better customize your digital advertising experience and present you with more relevant ads. Naver Privacy Policy
Quantcast
We use Quantcast to deploy digital advertising on sites supported by Quantcast. Ads are based on both Quantcast data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Quantcast has collected from you. We use the data that we provide to Quantcast to better customize your digital advertising experience and present you with more relevant ads. Quantcast Privacy Policy
Call Tracking
We use Call Tracking to provide customized phone numbers for our campaigns. This gives you faster access to our agents and helps us more accurately evaluate our performance. We may collect data about your behavior on our sites based on the phone number provided. Call Tracking Privacy Policy
Wunderkind
We use Wunderkind to deploy digital advertising on sites supported by Wunderkind. Ads are based on both Wunderkind data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Wunderkind has collected from you. We use the data that we provide to Wunderkind to better customize your digital advertising experience and present you with more relevant ads. Wunderkind Privacy Policy
ADC Media
We use ADC Media to deploy digital advertising on sites supported by ADC Media. Ads are based on both ADC Media data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that ADC Media has collected from you. We use the data that we provide to ADC Media to better customize your digital advertising experience and present you with more relevant ads. ADC Media Privacy Policy
AgrantSEM
We use AgrantSEM to deploy digital advertising on sites supported by AgrantSEM. Ads are based on both AgrantSEM data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that AgrantSEM has collected from you. We use the data that we provide to AgrantSEM to better customize your digital advertising experience and present you with more relevant ads. AgrantSEM Privacy Policy
Bidtellect
We use Bidtellect to deploy digital advertising on sites supported by Bidtellect. Ads are based on both Bidtellect data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Bidtellect has collected from you. We use the data that we provide to Bidtellect to better customize your digital advertising experience and present you with more relevant ads. Bidtellect Privacy Policy
Bing
We use Bing to deploy digital advertising on sites supported by Bing. Ads are based on both Bing data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Bing has collected from you. We use the data that we provide to Bing to better customize your digital advertising experience and present you with more relevant ads. Bing Privacy Policy
G2Crowd
We use G2Crowd to deploy digital advertising on sites supported by G2Crowd. Ads are based on both G2Crowd data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that G2Crowd has collected from you. We use the data that we provide to G2Crowd to better customize your digital advertising experience and present you with more relevant ads. G2Crowd Privacy Policy
NMPI Display
We use NMPI Display to deploy digital advertising on sites supported by NMPI Display. Ads are based on both NMPI Display data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that NMPI Display has collected from you. We use the data that we provide to NMPI Display to better customize your digital advertising experience and present you with more relevant ads. NMPI Display Privacy Policy
VK
We use VK to deploy digital advertising on sites supported by VK. Ads are based on both VK data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that VK has collected from you. We use the data that we provide to VK to better customize your digital advertising experience and present you with more relevant ads. VK Privacy Policy
Adobe Target
We use Adobe Target to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Adobe Target Privacy Policy
Google Analytics (Advertising)
We use Google Analytics (Advertising) to deploy digital advertising on sites supported by Google Analytics (Advertising). Ads are based on both Google Analytics (Advertising) data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Google Analytics (Advertising) has collected from you. We use the data that we provide to Google Analytics (Advertising) to better customize your digital advertising experience and present you with more relevant ads. Google Analytics (Advertising) Privacy Policy
Trendkite
We use Trendkite to deploy digital advertising on sites supported by Trendkite. Ads are based on both Trendkite data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Trendkite has collected from you. We use the data that we provide to Trendkite to better customize your digital advertising experience and present you with more relevant ads. Trendkite Privacy Policy
Hotjar
We use Hotjar to deploy digital advertising on sites supported by Hotjar. Ads are based on both Hotjar data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Hotjar has collected from you. We use the data that we provide to Hotjar to better customize your digital advertising experience and present you with more relevant ads. Hotjar Privacy Policy
6 Sense
We use 6 Sense to deploy digital advertising on sites supported by 6 Sense. Ads are based on both 6 Sense data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that 6 Sense has collected from you. We use the data that we provide to 6 Sense to better customize your digital advertising experience and present you with more relevant ads. 6 Sense Privacy Policy
Terminus
We use Terminus to deploy digital advertising on sites supported by Terminus. Ads are based on both Terminus data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Terminus has collected from you. We use the data that we provide to Terminus to better customize your digital advertising experience and present you with more relevant ads. Terminus Privacy Policy
StackAdapt
We use StackAdapt to deploy digital advertising on sites supported by StackAdapt. Ads are based on both StackAdapt data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that StackAdapt has collected from you. We use the data that we provide to StackAdapt to better customize your digital advertising experience and present you with more relevant ads. StackAdapt Privacy Policy
The Trade Desk
We use The Trade Desk to deploy digital advertising on sites supported by The Trade Desk. Ads are based on both The Trade Desk data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that The Trade Desk has collected from you. We use the data that we provide to The Trade Desk to better customize your digital advertising experience and present you with more relevant ads. The Trade Desk Privacy Policy
RollWorks
We use RollWorks to deploy digital advertising on sites supported by RollWorks. Ads are based on both RollWorks data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that RollWorks has collected from you. We use the data that we provide to RollWorks to better customize your digital advertising experience and present you with more relevant ads. RollWorks Privacy Policy

Are you sure you want a less customized experience?

We can access your data only if you select "yes" for the categories on the previous screen. This lets us tailor our marketing so that it's more relevant for you. You can change your settings at any time by visiting our privacy statement

Your experience. Your choice.

We care about your privacy. The data we collect helps us understand how you use our products, what information you might be interested in, and what we can improve to make your engagement with Autodesk more rewarding.

May we collect and use your data to tailor your experience?

Explore the benefits of a customized experience by managing your privacy settings for this site or visit our Privacy Statement to learn more about your options.