<?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 Re: How to set image background tranparent color with AutoLisp in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13187845#M5725</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569"&gt;@lpr8PZGA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for late reply; been busy over the holiday here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569"&gt;@lpr8PZGA&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I tried it in Civil 3D as "vanilla ACad" doesn't allow to pick color for the bkg transparency for an IMAGE&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;You do not need to do it in vanilla Acad; you can run it in Civil 3D.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569"&gt;@lpr8PZGA&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Unfortunately, it doesn't work. Did you test it?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, I did test it; all is working on my end (see below gif). What does your command history say when you run it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RIT.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1441091iAB0A656CEAFF2AAA/image-size/large?v=v2&amp;amp;px=999" role="button" title="RIT.gif" alt="RIT.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
    <pubDate>Mon, 02 Dec 2024 21:03:38 GMT</pubDate>
    <dc:creator>CodeDing</dc:creator>
    <dc:date>2024-12-02T21:03:38Z</dc:date>
    <item>
      <title>How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13175743#M5706</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how do I set image (TIFF) background transparent color (to white)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- In the picture attached you can see how to do it via Properties Bar:&lt;/P&gt;&lt;P&gt;1. turn image transparency ON,&lt;/P&gt;&lt;P&gt;2. select transparency color [Select &amp;lt;] ... and pick e.g. white color in the image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I observed that this may add some "AcMapRasterExTrClr" x-data, but not only this...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So - how to set the white color as transparent for the image with AutoLisp (or VisualLisp)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lukas&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 21:03:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13175743#M5706</guid>
      <dc:creator>lpr8PZGA</dc:creator>
      <dc:date>2024-11-26T21:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13177766#M5707</link>
      <description>&lt;P&gt;Many moons ago I had to do something like this.&amp;nbsp;&lt;BR /&gt;This is what I ended up with.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(setq acadobject (vlax-get-acad-object))
(setq acadpref (vlax-get-property acadobject 'preferences))
(setq acaddisp (vlax-get-property acadpref 'display))
(vlax-put-property acaddisp 'GraphicsWinmodelBackgrndColor 1423) ;;Model space background
(vlax-put-property acaddisp 'GraphicsWinLayoutBackgrndColor  0) ;;command area
(vlax-put-property acaddisp 'ModelCrosshairColor 16777215) ;; crosshairs
(vlax-put-property acaddisp 'TextWinBackgrndColor 16777215) ;;command area&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the Thread on it.&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/changing-page-layout-paper-background-via-lisp/td-p/6388691" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/changing-page-layout-paper-background-via-lisp/td-p/6388691&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;There is the true color to rgb lisp&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun RGBToTrueColor (rgb)
 (setq r (lsh (car rgb) 16))
 (setq g (lsh (cadr rgb) 8))
 (setq b (caddr rgb))
 (setq tcol (+ (+ r g) b)) 
) &lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 15:36:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13177766#M5707</guid>
      <dc:creator>LDShaw</dc:creator>
      <dc:date>2024-11-27T15:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13177813#M5708</link>
      <description>&lt;P&gt;Hello LDSha,&lt;/P&gt;&lt;P&gt;I guess your code doesn't change entity property (= transparency color for an image) but some colors of the ACad window, like model background, command window background etc.&lt;/P&gt;&lt;P&gt;But I don't see a way to use the code with an drawing entity (or entity of IMAGE type/class).&lt;/P&gt;&lt;P&gt;(I had some ideas which didn't work...)&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 15:54:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13177813#M5708</guid>
      <dc:creator>lpr8PZGA</dc:creator>
      <dc:date>2024-11-27T15:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13177956#M5709</link>
      <description>&lt;P&gt;You are right. I thought you wanted to change the background. Not a tiff. Sorry.&amp;nbsp;&lt;BR /&gt;Next sorry, I have to get the stupid questions out of the way first. It always bites me when I don't.&lt;BR /&gt;&lt;BR /&gt;Can you set the transparency manually?&amp;nbsp;&lt;BR /&gt;Have you looked at&amp;nbsp;&lt;A href="https://help.autodesk.com/view/OARX/2023/ENU/?guid=GUID-9854CD06-75D8-4024-BB67-BA80ED00ABE5" target="_blank" rel="noopener"&gt;for examples?&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Can you attach the tiff so I can try something? I don't typically work with Transparent backgrounds but this sounds like a fun challenge.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 16:39:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13177956#M5709</guid>
      <dc:creator>LDShaw</dc:creator>
      <dc:date>2024-11-27T16:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13177984#M5710</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I attached a sample TIFF.&lt;/P&gt;&lt;P&gt;And yes, I can set the background color manually with Properties Bar to a single file.&lt;/P&gt;&lt;P&gt;Once I select more TIFFs the "Image Background Color" (picker) in the Properties Bar disappears, so I can only set the background color per a single IMAGE.&lt;/P&gt;&lt;P&gt;And in my situation I have several hundreds of TIFFs (photogrammetry) to set transparent bkg color to white manually!&lt;/P&gt;&lt;P&gt;So I'd like to write a simple Lisp which will walk through a selection set of IMAGEs and set the bkg trans color to white for each of them...&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 16:50:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13177984#M5710</guid>
      <dc:creator>lpr8PZGA</dc:creator>
      <dc:date>2024-11-27T16:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178222#M5711</link>
      <description>&lt;P&gt;I'm not seeing that option on my versions of &lt;STRONG&gt;AutoCAD&lt;/STRONG&gt; from &lt;STRONG&gt;2020&lt;/STRONG&gt; through &lt;STRONG&gt;2025&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;It's not there in the &lt;STRONG&gt;Ribbon&lt;/STRONG&gt; nor in the &lt;STRONG&gt;Properties&lt;/STRONG&gt; window to set the &lt;STRONG&gt;Transparency Background Color&lt;/STRONG&gt; of a &lt;STRONG&gt;Tif&lt;/STRONG&gt;&amp;nbsp;&lt;STRONG&gt;Image&lt;/STRONG&gt; once the &lt;STRONG&gt;Transparency&lt;/STRONG&gt; setting is set to &lt;STRONG&gt;Yes&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1732730999943.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439478i264C7F04BB6DE6C9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_0-1732730999943.png" alt="paullimapa_0-1732730999943.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:10:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178222#M5711</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-11-27T18:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178229#M5712</link>
      <description>&lt;P&gt;Here's the same screenshot but now with your Tif attached.&lt;/P&gt;&lt;P&gt;Still no option to select Transparency Background Color&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1732731137609.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439481i48A87C356B065E7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_0-1732731137609.png" alt="paullimapa_0-1732731137609.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:12:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178229#M5712</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-11-27T18:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178286#M5713</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see it in Acad '21 (untested in others):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 693px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439501i3F23D9274F3CE5FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:39:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178286#M5713</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2024-11-27T18:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178296#M5714</link>
      <description>&lt;P&gt;odd because still not there for me&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1732732921079.png" style="width: 690px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439502i9E03998799E64621/image-dimensions/690x735?v=v2" width="690" height="735" role="button" title="paullimapa_0-1732732921079.png" alt="paullimapa_0-1732732921079.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:42:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178296#M5714</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-11-27T18:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178308#M5715</link>
      <description>&lt;P&gt;I believe this is a rastercad\civil command.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;rbackground&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://help.autodesk.com/view/RSTR/2022/ENU/?guid=GUID-777653CA-62A3-44DC-8834-4D307EAA9E9C" target="_blank" rel="noopener"&gt;https://help.autodesk.com/view/RSTR/2022/ENU/?guid=GUID-777653CA-62A3-44DC-8834-4D307EAA9E9C&lt;/A&gt;&lt;BR /&gt;I won't swear to it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:47:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178308#M5715</guid>
      <dc:creator>LDShaw</dc:creator>
      <dc:date>2024-11-27T18:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178312#M5716</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569"&gt;@lpr8PZGA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your image is not inherently transparent; it has a White background.&lt;/P&gt;&lt;P&gt;1) To set the 'transparency' it asks you to select a color...&lt;/P&gt;&lt;P&gt;2) Select the White color on your image and it will make all pixels of that same color transparent.&lt;/P&gt;&lt;P&gt;3) But be aware that other White pixels will become transparent also; like the ones in your paint stripe..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439506i719E65F729422782/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) (select OK after picking white pixel)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439507i67661EB9BEAF21D5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 583px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439509iB24F0732685DA918/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:47:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178312#M5716</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2024-11-27T18:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178320#M5717</link>
      <description>&lt;P&gt;I see..so not in my vanilla autocad then&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:49:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178320#M5717</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-11-27T18:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178326#M5718</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2284856"&gt;@LDShaw&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running "Civil 3D as AutoCAD 2021". Didn't know it would matter lol&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 258px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439516iF8D870948E7EAD9D/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1439512i69F48F160D14CF59/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 18:50:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178326#M5718</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2024-11-27T18:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178368#M5719</link>
      <description>&lt;P&gt;I have raster but not loaded. I was debating if it was worth it. I'd think the lisp would be pretty simple. Especially if&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569" target="_self"&gt;&lt;SPAN class=""&gt;lpr8PZGA&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;can type the commands out he's using to do it instead of using icons.&amp;nbsp; Pretty sure a&amp;nbsp;&lt;STRONG&gt;rbackground &lt;/STRONG&gt;can be used in a set.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 19:02:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178368#M5719</guid>
      <dc:creator>LDShaw</dc:creator>
      <dc:date>2024-11-27T19:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178374#M5720</link>
      <description>&lt;P&gt;so I wonder in &lt;STRONG&gt;Civil3d&lt;/STRONG&gt; if you run this line of code and select the &lt;STRONG&gt;Tif IMAGE&lt;/STRONG&gt; would there be a &lt;STRONG&gt;propertyvalue&lt;/STRONG&gt; that you can change for the &lt;STRONG&gt;Transparency Background Color&lt;/STRONG&gt;?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(dumpallproperties (car (entsel)))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 19:03:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178374#M5720</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-11-27T19:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178426#M5721</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There's nothing in (dumpallproperties ...) that seems to apply. But we can see an assigned color in the App portion of entity definition data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;((-1 . &amp;lt;Entity name: 20a91eef9b0&amp;gt;) (0 . "IMAGE") (330 . &amp;lt;Entity name: 20a2814c1f0&amp;gt;) (5 . "10496D3")
(100 . "AcDbEntity") (67 . 0) (410 . "Model") (8 . "_WORKING") (100 . "AcDbRasterImage") (90 . 0)
(10 3.17639e+06 1.68987e+06 0.0) (11 0.00722791 0.0 0.0) (12 4.42582e-19 0.00722791 0.0) (13 8350.0 8345.0 0.0)
(340 . &amp;lt;Entity name: 20a91eef990&amp;gt;) (70 . 15) (280 . 0) (281 . 50) (282 . 50) (283 . 0) (290 . 0)
(360 . &amp;lt;Entity name: 20a91eef9a0&amp;gt;) (71 . 1) (91 . 2) (14 -0.5 -0.5 0.0) (14 8349.5 8344.5 0.0)
(-3 ("AcMapRasterExTrClr" (1071 . 16777215))))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's dump if you want to check:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;------- BEFORE Transparency Color Applied -------
Select object: Begin dumping object (class: AcDbRasterImage)
Annotative (type: bool)  (LocalName: Annotative) = Failed to get value
AnnotativeScale (type: AcString)  (RO)  (LocalName: Annotative scale) = Failed to get value
BlockId (type: AcDbObjectId)  (RO) = 20a2814c1f0
Brightness (type: unsigned char)  (LocalName: Brightness) = 50
CastShadows (type: bool) = 0
ClassName (type: AcString)  (RO) =
ClipBoundaryType (type: AcDbRasterImage::ClipBoundaryType)  (RO) = 1
CollisionType (type: AcDb::CollisionType)  (RO) = 1
Color (type: AcCmColor)  (LocalName: Color) = BYLAYER
Contrast (type: unsigned char)  (LocalName: Contrast) = 50
ExtensionDictionary (type: AcDbObjectId)  (RO) = 0
Fade (type: unsigned char)  (LocalName: Fade) = 0
Handle (type: AcDbHandle)  (RO) = 10496d3
HasFields (type: bool)  (RO) = 0
HasSaveVersionOverride (type: bool) = 0
Height (type: double)  (LocalName: Height) = 60.316877
Hyperlinks (type: AcDbHyperlink*)
ImageDefId (type: AcDbObjectId)  (RO) = 20a91eef990
ImageDefId/SourceFileName (type: AcString)  (RO)  (LocalName: Saved Path) = C:\Users\ddeterding\Downloads\ZM_Obl2_96.tif
ImageHeight (type: double)  (RO) = 8345.000000
ImageName (type: AcString)  (RO)  (LocalName: Name) = ZM_Obl2_96
ImageTransparency (type: bool)  (LocalName: Background transparency) = 1
ImageWidth (type: double)  (RO) = 8350.000000
IsA (type: AcRxClass*)  (RO) = AcDbRasterImage
IsAProxy (type: bool)  (RO) = 0
IsCancelling (type: bool)  (RO) = 0
IsClipped (type: bool)  (LocalName: Show clipped) = 1
IsEraseStatusToggled (type: bool)  (RO) = 0
IsErased (type: bool)  (RO) = 0
IsModified (type: bool)  (RO) = 0
IsModifiedGraphics (type: bool)  (RO) = 0
IsModifiedXData (type: bool)  (RO) = 0
IsNewObject (type: bool)  (RO) = 0
IsNotifyEnabled (type: bool)  (RO) = 0
IsNotifying (type: bool)  (RO) = 0
IsObjectIdsInFlux (type: bool)  (RO) = 0
IsPersistent (type: bool)  (RO) = 1
IsPlanar (type: bool)  (RO) = 0
IsReadEnabled (type: bool)  (RO) = 1
IsReallyClosing (type: bool)  (RO) = 1
IsTransactionResident (type: bool)  (RO) = 0
IsUndoing (type: bool)  (RO) = 0
IsWriteEnabled (type: bool)  (RO) = 0
LayerId (type: AcDbObjectId)  (LocalName: Layer) = 20a1e2e64a0
LineWeight (type: AcDb::LineWeight)  (LocalName: Lineweight) = -1
LinetypeId (type: AcDbObjectId)  (LocalName: Linetype) = 20a2814c150
LinetypeScale (type: double)  (LocalName: Linetype scale) = 1.000000
LocalizedName (type: AcString)  (RO) = Raster Image
MaterialId (type: AcDbObjectId)  (LocalName: Material) = Failed to get value
MergeStyle (type: AcDb::DuplicateRecordCloning)  (RO) = 1
ObjectId (type: AcDbObjectId)  (RO) = 20a91eef9b0
OwnerId (type: AcDbObjectId)  (RO) = 20a2814c1f0
PixelToModelTransform (type: AcGeMatrix3d)  (RO) = ((0.007228 0.000000 0.000000 0.000000)(-0.000000 -0.007228 0.000000 0.000000) (0.000000 0.000000 1.000000 0.000000) (3176389.345288 1689930.849196 0.000000 1.000000))
PlotStyleName (type: AcString)  (RO)  (LocalName: Plot style) = ByColor
Position/X (type: double)  (LocalName: Position) = 3176389.341674
Position/Y (type: double) = 1689870.535933
Position/Z (type: double) = 0.000000
ReactorId (type: AcDbObjectId) = 20a91eef9a0
ReceiveShadows (type: bool) = 0
Rotation (type: double)  (LocalName: Rotation) = 0.000000
Scale (type: double)  (LocalName: Scale) = 60.353017
ShadowDisplay (type: AcDb::ShadowFlags)  (LocalName: Shadow Display) = Failed to get value
ShowImage (type: bool)  (LocalName: Show image) = 1
Transparency (type: AcCmTransparency)  (LocalName: Transparency) = 0
Visible (type: AcDb::Visibility) = 0
Width (type: double)  (LocalName: Width) = 60.353017
End object dump


------- AFTER Transparency Color Applied -------
Select object: Begin dumping object (class: AcDbRasterImage)
Annotative (type: bool)  (LocalName: Annotative) = Failed to get value
AnnotativeScale (type: AcString)  (RO)  (LocalName: Annotative scale) = Failed to get value
BlockId (type: AcDbObjectId)  (RO) = 20a2814c1f0
Brightness (type: unsigned char)  (LocalName: Brightness) = 50
CastShadows (type: bool) = 0
ClassName (type: AcString)  (RO) =
ClipBoundaryType (type: AcDbRasterImage::ClipBoundaryType)  (RO) = 1
CollisionType (type: AcDb::CollisionType)  (RO) = 1
Color (type: AcCmColor)  (LocalName: Color) = BYLAYER
Contrast (type: unsigned char)  (LocalName: Contrast) = 50
ExtensionDictionary (type: AcDbObjectId)  (RO) = 0
Fade (type: unsigned char)  (LocalName: Fade) = 0
Handle (type: AcDbHandle)  (RO) = 10496d3
HasFields (type: bool)  (RO) = 0
HasSaveVersionOverride (type: bool) = 0
Height (type: double)  (LocalName: Height) = 60.316877
Hyperlinks (type: AcDbHyperlink*)
ImageDefId (type: AcDbObjectId)  (RO) = 20a91eef990
ImageDefId/SourceFileName (type: AcString)  (RO)  (LocalName: Saved Path) = C:\Users\ddeterding\Downloads\ZM_Obl2_96.tif
ImageHeight (type: double)  (RO) = 8345.000000
ImageName (type: AcString)  (RO)  (LocalName: Name) = ZM_Obl2_96
ImageTransparency (type: bool)  (LocalName: Background transparency) = 1
ImageWidth (type: double)  (RO) = 8350.000000
IsA (type: AcRxClass*)  (RO) = AcDbRasterImage
IsAProxy (type: bool)  (RO) = 0
IsCancelling (type: bool)  (RO) = 0
IsClipped (type: bool)  (LocalName: Show clipped) = 1
IsEraseStatusToggled (type: bool)  (RO) = 0
IsErased (type: bool)  (RO) = 0
IsModified (type: bool)  (RO) = 0
IsModifiedGraphics (type: bool)  (RO) = 0
IsModifiedXData (type: bool)  (RO) = 0
IsNewObject (type: bool)  (RO) = 0
IsNotifyEnabled (type: bool)  (RO) = 0
IsNotifying (type: bool)  (RO) = 0
IsObjectIdsInFlux (type: bool)  (RO) = 0
IsPersistent (type: bool)  (RO) = 1
IsPlanar (type: bool)  (RO) = 0
IsReadEnabled (type: bool)  (RO) = 1
IsReallyClosing (type: bool)  (RO) = 1
IsTransactionResident (type: bool)  (RO) = 0
IsUndoing (type: bool)  (RO) = 0
IsWriteEnabled (type: bool)  (RO) = 0
LayerId (type: AcDbObjectId)  (LocalName: Layer) = 20a1e2e64a0
LineWeight (type: AcDb::LineWeight)  (LocalName: Lineweight) = -1
LinetypeId (type: AcDbObjectId)  (LocalName: Linetype) = 20a2814c150
LinetypeScale (type: double)  (LocalName: Linetype scale) = 1.000000
LocalizedName (type: AcString)  (RO) = Raster Image
MaterialId (type: AcDbObjectId)  (LocalName: Material) = Failed to get value
MergeStyle (type: AcDb::DuplicateRecordCloning)  (RO) = 1
ObjectId (type: AcDbObjectId)  (RO) = 20a91eef9b0
OwnerId (type: AcDbObjectId)  (RO) = 20a2814c1f0
PixelToModelTransform (type: AcGeMatrix3d)  (RO) = ((0.007228 0.000000 0.000000 0.000000)(-0.000000 -0.007228 0.000000 0.000000) (0.000000 0.000000 1.000000 0.000000) (3176389.345288 1689930.849196 0.000000 1.000000))
PlotStyleName (type: AcString)  (RO)  (LocalName: Plot style) = ByColor
Position/X (type: double)  (LocalName: Position) = 3176389.341674
Position/Y (type: double) = 1689870.535933
Position/Z (type: double) = 0.000000
ReactorId (type: AcDbObjectId) = 20a91eef9a0
ReceiveShadows (type: bool) = 0
Rotation (type: double)  (LocalName: Rotation) = 0.000000
Scale (type: double)  (LocalName: Scale) = 60.353017
ShadowDisplay (type: AcDb::ShadowFlags)  (LocalName: Shadow Display) = Failed to get value
ShowImage (type: bool)  (LocalName: Show image) = 1
Transparency (type: AcCmTransparency)  (LocalName: Transparency) = 0
Visible (type: AcDb::Visibility) = 0
Width (type: double)  (LocalName: Width) = 60.353017
End object dump&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 27 Nov 2024 19:25:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178426#M5721</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2024-11-27T19:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178467#M5722</link>
      <description>&lt;P&gt;Thanks for the screen dump...so the typical &lt;STRONG&gt;ImageTransparency&lt;/STRONG&gt; property is there:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;ImageTransparency (type: bool)  (LocalName: Background transparency) = 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;But the color is definitely xdata and probably could be obtained also with this code:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;; getXData retrieves xdata from selected entity
; https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/seek-a-lisp-to-change-revclound-to-polygon-with-specific-layer/m-p/13147507/highlight/true#M474693
(defun c:getXData ( / ename edata )
  (if (setq ename (car (entsel "\nSelect entity to read xdata: ")))
    (progn
      (setq edata (entget ename '("*")))
      (if (setq xdata (cdr (assoc -3 edata)))
        (foreach item xdata
          (print item)
        )
        (princ "\nEntity has no xdata.")
      )
    )
  )
  (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;Should be able to create new xdata code to replace the color...&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 19:42:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178467#M5722</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-11-27T19:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178620#M5723</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569"&gt;@lpr8PZGA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok so I can not find a way to apply them 100%. So you have to do 2 things:&lt;/P&gt;&lt;P&gt;1) Select the Transparency Color ONCE on ONE image (as shown in my &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178312#M475378" target="_blank" rel="noopener"&gt;message 11&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;2) Run this code, selecting ALL of your images, and it should apply the white color automatically as background for all of them:&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;;; Raster Image Transparency
(defun c:RIT ( / clr ss cnt len e eg xd)
  (setq clr 16777215)
  (if (setq ss (ssget '((0 . "IMAGE"))))
    (progn
      (if (null (tblsearch "APPID" "AcMapRasterExTrClr"))
        (regapp "AcMapRasterExTrClr")
      );if
      (setq cnt (sslength ss) len (itoa cnt))
      (repeat cnt
        (setq e (ssname ss (setq cnt (1- cnt))))
        (setpropertyvalue e "ImageTransparency" 1)
        (setq eg (entget e))
        (if (setq xd (assoc -3 eg))
          (setq eg (subst (append xd (list (list "AcMapRasterExTrClr" (cons 1071 clr)))) xd eg))
          (setq eg (append eg (list (list -3 (list "AcMapRasterExTrClr" (cons 1071 clr))))))
        );if
        (entmod eg)
      );repeat
      (alert (princ (strcat "\n" len " image transparencies applied.")))
    );progn
  ;else
    (prompt "\nNo Raster Images selected. Try again.")
  );if
  (princ)
);defun&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 20:47:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13178620#M5723</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2024-11-27T20:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13179465#M5724</link>
      <description>&lt;P&gt;Hello CodeDing,&lt;/P&gt;&lt;P&gt;thanks for the code. It's similar enough to that I arrived to. Unfortunately, it doesn't work. Did you test it?&lt;/P&gt;&lt;P&gt;BTW, I tried it in Civil 3D as "vanilla ACad" doesn't allow to pick color for the bkg transparency for an IMAGE - and also I placed this question to C3D forum, but it was moved by an admin into this branch later.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 08:02:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13179465#M5724</guid>
      <dc:creator>lpr8PZGA</dc:creator>
      <dc:date>2024-11-28T08:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to set image background tranparent color with AutoLisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13187845#M5725</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569"&gt;@lpr8PZGA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for late reply; been busy over the holiday here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569"&gt;@lpr8PZGA&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I tried it in Civil 3D as "vanilla ACad" doesn't allow to pick color for the bkg transparency for an IMAGE&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;You do not need to do it in vanilla Acad; you can run it in Civil 3D.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15814569"&gt;@lpr8PZGA&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Unfortunately, it doesn't work. Did you test it?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, I did test it; all is working on my end (see below gif). What does your command history say when you run it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RIT.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1441091iAB0A656CEAFF2AAA/image-size/large?v=v2&amp;amp;px=999" role="button" title="RIT.gif" alt="RIT.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 21:03:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-set-image-background-tranparent-color-with-autolisp/m-p/13187845#M5725</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2024-12-02T21:03:38Z</dc:date>
    </item>
  </channel>
</rss>

