<?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: Display PNG image from URL into a Wafer Map in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577219#M78479</link>
    <description>&lt;P&gt;hi Jthi, thanks for your help.&lt;/P&gt;&lt;P&gt;But I obtain circles instead pokemon images .... a graph parameter to change ?&lt;/P&gt;</description>
    <pubDate>Mon, 05 Dec 2022 09:11:57 GMT</pubDate>
    <dc:creator>BiX</dc:creator>
    <dc:date>2022-12-05T09:11:57Z</dc:date>
    <item>
      <title>Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/573139#M78206</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to see a wafermap from CSV file ... ok&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BiX_0-1669282556917.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47595iD785B3AF692C1918/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BiX_0-1669282556917.png" alt="BiX_0-1669282556917.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but I would replace each square by an PNG image from URL&amp;nbsp; defined into the same CSV file ...&lt;/P&gt;&lt;P&gt;Do you have some ideas how to do ???&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:29:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/573139#M78206</guid>
      <dc:creator>BiX</dc:creator>
      <dc:date>2023-06-11T11:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/573149#M78208</link>
      <description>&lt;P&gt;You can try to use images as markers &lt;A href="https://www.jmp.com/support/help/en/16.2/index.shtml#page/jmp/use-images-as-markers.shtml" target="_blank" rel="noopener"&gt; Using JMP &amp;gt; JMP Reports &amp;gt; Use Markers in Graphs &amp;gt; Use Images as Markers&lt;/A&gt; after you have the images in the data table. And how to get those images depends a lot on how your urls work. You might be able to use Expression column with formula like Open(url). Getting the sizes right might require some tinkering. &lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("Untitled",
	Add Rows(1),
	New Column("url",
		Character,
		"Nominal",
		Set Values(
			{
			"https://www.jmp.com/en_us/download-jmp-free-trial/_jcr_content/par/contenttargetingcont/par_off/styledcontainer_cdbe/par/image_f589.img.png/1520449222936.png"
			}
		)
	),
	New Column("Column 2", Expression, "None", Formula(Open(:url)), Use for Marker)
);

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(496, 466),
	Show Control Panel(0),
	Variables(X(:url)),
	Elements(Points(X, Legend(2)))
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It might also be a good idea to prevent the images from being downloaded again if they have been downloaded once&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 10:51:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/573149#M78208</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-11-24T10:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/573160#M78211</link>
      <description>&lt;P&gt;&lt;LI-MESSAGE title="Add Text to a Picture" uid="513376" url="https://community.jmp.com/t5/Uncharted/Add-Text-to-a-Picture/m-p/513376#U513376" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp; might give you some ideas.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;JMP has three ways to think about images.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;put the images into graphs, using the X and Y axes to position and scale and the order of the images to determine what is on top.&lt;/LI&gt;
&lt;LI&gt;use the image functions to load and crop and size image objects (which can be saved as PNG or JPG when done.)&lt;/LI&gt;
&lt;LI&gt;move the image objects into matrices and use matrix operations to manipulate the pixels. Move back to image objects to save a picture.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You'll want to use (1) if you are building a graph already. Look at the second answer, around here:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// you could use a loop to add a bunch of images to the framebox
// &amp;lt;&amp;lt;AddImage adds at the FRONT of the display list. The first 
// image added will be drawn last, on top of the 2nd image added.
gb[framebox(1)]&amp;lt;&amp;lt;Add Image( image( overlay2 ), bounds( top( 50 ), Left( 155 ), bottom( 50+yOverlay2Size ), Right( 155+xOverlay2Size + 1 ) ) );
gb[framebox(1)]&amp;lt;&amp;lt;Add Image( image( overlay1 ), bounds( top( 50 ), Left( 20 ), bottom( 50+yOverlay1Size ), Right( 20+xOverlay1Size + 1 ) ) );
gb[framebox(1)]&amp;lt;&amp;lt;Add Image( image( original ), bounds( top( 0 ), Left( 1 ), bottom( ySize ), Right( xSize + 1 ) ) ); 
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 12:03:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/573160#M78211</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-11-24T12:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/573269#M78224</link>
      <description>&lt;P&gt;To use the images as shapes for the data points, you can also specify the column via&amp;nbsp;&lt;CODE class=" language-jsl"&gt;Set Shape Column &lt;/CODE&gt;in the GraphBuilder command.&lt;/P&gt;&lt;P&gt;Or later, by right-clicking into the GraphBuilder window and slecting&amp;nbsp; Set Shape Column ... from there.&lt;/P&gt;&lt;P&gt;This allows to use different columns for different plots - and have some plots with standard markers.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1669310940777.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47602i0D3E65E9E5B01E90/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1669310940777.png" alt="hogi_2-1669310940777.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A great way to get the images into the data table is explained here:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discovery-Summit-Americas-2020/Images-in-Data-Tables-and-related-JSL-Tools-2020-US-30MP-585/ta-p/281528" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/Discovery-Summit-Americas-2020/Images-in-Data-Tables-and-related-JSL-Tools-2020-US-30MP-585/ta-p/281528&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If the links are listed in a column, it's just one click (Imagetable_Import_Images)&amp;nbsp; and they are automatically loaded.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open( "$SAMPLE_DATA/Big Class Families.jmp" );

New Column( "X", Numeric, "Continuous", Format( "Best", 12 ), Formula( Mod( Row() - 1, 7 ) ), Set Selected );
New Column( "Y", Numeric, "Continuous", Format( "Best", 12 ), Formula( Floor( (Row() - 1) / 7 ) ), Set Selected );

Graph Builder(
	Size( 511, 500 ),
	Show Control Panel( 0 ),
	Variables( X( :X ), Y( :Y ) ),
	Elements( Points( X, Y, Legend( 3 ), Set Shape Column( :picture ) ) ),
	Dispatch( {}, "400", ScaleBox, {Legend Model( 3, Properties( 0, {Marker Size( 10 )}, Item ID( "Y", 1 ) ) )} )
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Nov 2022 17:29:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/573269#M78224</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2022-11-24T17:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/574514#M78328</link>
      <description>&lt;P&gt;Tous, Merci de vos propositions. je vais les essayer.&lt;/P&gt;&lt;P&gt;je vais deja essayer de faire apparaitre les images dans une colonne de ma table car je ne suis pas sur du format de l URL avec un chemin type windows (ex: //server.com/directory/image.png)&lt;/P&gt;&lt;P&gt;si vous avez des propositions de codes pour l affichage d image dans une data base JMP ... je suis interesse.&lt;/P&gt;&lt;P&gt;Merci&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 14:31:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/574514#M78328</guid>
      <dc:creator>BiX</dc:creator>
      <dc:date>2022-11-29T14:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576519#M78440</link>
      <description>&lt;P&gt;Desole, je suis debutant et ne reussi pas, meme avec vos conseils, a realiser ce graph, avec les images et le fichier csv en entree. je renouvèle ma demande&amp;nbsp; d aide.&amp;nbsp; merci par avance&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="BiX_0-1669989097489.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47875i6B556A81A44A2BF3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BiX_0-1669989097489.png" alt="BiX_0-1669989097489.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 13:57:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576519#M78440</guid>
      <dc:creator>BiX</dc:creator>
      <dc:date>2022-12-02T13:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576522#M78442</link>
      <description>&lt;P&gt;What is causing issues for you? Have you managed to get the images correctly to data table?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 14:30:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576522#M78442</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-12-02T14:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576584#M78446</link>
      <description>&lt;P&gt;Hi jthi,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I execute my script, I don't obtain the wafermap with all Pokemon Images ...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 16:29:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576584#M78446</guid>
      <dc:creator>BiX</dc:creator>
      <dc:date>2022-12-02T16:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576588#M78447</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After importing the csv file with the X/Y data and the file paths, use the add-in from&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discovery-Summit-Americas-2020/Images-in-Data-Tables-and-related-JSL-Tools-2020-US-30MP-585/ta-p/281528" target="_blank"&gt;https://community.jmp.com/t5/Discovery-Summit-Americas-2020/Images-in-Data-Tables-and-related-JSL-Tools-2020-US-30MP-585/ta-p/281528&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;by clicking on&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1669998904314.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47878i512519E0C925F1DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1669998904314.png" alt="hogi_1-1669998904314.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Last step: generate the GraphBuilder Graph and load the images via:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1669998834219.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47877i7E37A6E4032A2A23/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1669998834219.png" alt="hogi_0-1669998834219.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 16:35:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576588#M78447</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2022-12-02T16:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576604#M78451</link>
      <description>&lt;P&gt;Leave Filename column as Character. I would also suggest using full paths of the images as it makes it easier to load the images (if you cannot do that, it might be easiest to use Get Default Directory() or Convert File Path() to build those for image loading column). Also using images as markers will make them (most likely) dependent on the graph size and used marker size. If all images are same size and you don't need graph builder, building custom display can also be an option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My images, csv and images are in Downloads/pokemons folder&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1669999667603.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47880iC7E790BF92BFB382/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1669999667603.png" alt="jthi_0-1669999667603.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I did some path cleanup in the script for paths&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open(
	"$DOWNLOADS/pokemons\Wafermap_pokemon_2.csv",
	Import Settings(
		End Of Line(CRLF, CR, LF),
		End Of Field(Comma, CSV(1)),
		Strip Quotes(0),
		Use Apostrophe as Quotation Mark(0),
		Use Regional Settings(0),
		Scan Whole File(1),
		Treat empty columns as numeric(0),
		CompressNumericColumns(0),
		CompressCharacterColumns(0),
		CompressAllowListCheck(0),
		Labels(1),
		Column Names Start(1),
		Data Starts(2),
		Lines To Read("All"),
		Year Rule("20xx")
	)
);

dt:XCoord &amp;lt;&amp;lt; Data type(Numeric) &amp;lt;&amp;lt; Set Modeling Type(Ordinal);
dt:YCoord &amp;lt;&amp;lt; Data type(Numeric) &amp;lt;&amp;lt; Set Modeling Type(Ordinal);

// reduce Filename to only filename OR use full filepath and modify Images column's formula
dt:Filename &amp;lt;&amp;lt; Set Each Value(Word(-1, :Filename, "\"));
Show(Get Default Directory());

// This can be modified to get borders and so on if needfed
dt &amp;lt;&amp;lt; New Column("Images", Expression, None, &amp;lt;&amp;lt; Set Each Value(
	Open(Get Default Directory() ||"images/" || :Filename, png);
));

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(522, 451),
	Show Control Panel(0),
	Variables(X(:XCoord), Y(:YCoord)),
	Elements(Points(X, Y, Legend(3), Set Shape Column(:Images))),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size(15), Marker Drawing Mode("Normal")}
		)
	)
);

dt &amp;lt;&amp;lt; New Column("ImagesWithBorder", Expression, None, &amp;lt;&amp;lt; Set Each Value(
	Local({bb, img},
		bb = Border Box(Left(15, Empty()), Right(15, Empty()), Top(15), Bottom(15),
			img = Picture Box(Open(Get Default Directory() ||"images/" || :Filename, png))
		);
		bb &amp;lt;&amp;lt; Background Color("Orange");
		img &amp;lt;&amp;lt; Background Color("White");
		bb &amp;lt;&amp;lt; Get Picture;
	);
));

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(457, 714),
	Show Control Panel(0),
	Variables(X(:XCoord), Y(:YCoord)),
	Elements(Points(X, Y, Legend(3), Set Shape Column(:ImagesWithBorder))),
	SendToReport(Dispatch({}, "Graph Builder", FrameBox, {Marker Size(30), Marker Drawing Mode("Normal")}))
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;Data table:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_3-1670000506138.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47883iFACB270BD0C16145/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_3-1670000506138.png" alt="jthi_3-1670000506138.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without borders and marker size as 15&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1669999698929.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47881i74A7291487D95FFB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1669999698929.png" alt="jthi_1-1669999698929.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Borders and marker size 30:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1669999730854.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47882iF7E1647C40764409/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1669999730854.png" alt="jthi_2-1669999730854.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I modify graph size the marker size won't keep up:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_4-1670000529186.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47884i49B4925A884132DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_4-1670000529186.png" alt="jthi_4-1670000529186.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 17:07:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/576604#M78451</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-12-02T17:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577219#M78479</link>
      <description>&lt;P&gt;hi Jthi, thanks for your help.&lt;/P&gt;&lt;P&gt;But I obtain circles instead pokemon images .... a graph parameter to change ?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 09:11:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577219#M78479</guid>
      <dc:creator>BiX</dc:creator>
      <dc:date>2022-12-05T09:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577220#M78480</link>
      <description>&lt;P&gt;Graph builder might be plotted from wrong data table. Based on window names: graph builder is using table Wafermap_pokemon_2 and data table is which is visible is Wafermap_pokemon_2 &lt;STRONG&gt;2&lt;/STRONG&gt;). Maybe Wafermap_pokemon_2 data table doesn't have Image column properly set?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 09:18:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577220#M78480</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-12-05T09:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577858#M78535</link>
      <description>&lt;P&gt;Hi Jthi,&lt;/P&gt;&lt;P&gt;thanks again.&lt;/P&gt;&lt;P&gt;Sorry, I have always point or circle instead of pokemon images.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspect&amp;nbsp; the command "Set Shape Column(:Images))" is not functional on my side ?&amp;nbsp; (in V15.0.0 or V15.2.1)&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="BiX_0-1670316049874.png" style="width: 795px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47956i482B020DD8035662/image-dimensions/795x496?v=v2" width="795" height="496" role="button" title="BiX_0-1670316049874.png" alt="BiX_0-1670316049874.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 08:48:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577858#M78535</guid>
      <dc:creator>BiX</dc:creator>
      <dc:date>2022-12-06T08:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577865#M78538</link>
      <description>&lt;P&gt;I'm not sure when it has been implemented (I'm using JMP16). You could try using the Images column as Marker column I suggested in my first message in this thread. Hopefully that works (you will have to remove that part from graph builder in that case I would think).&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 09:54:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577865#M78538</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-12-06T09:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577918#M78546</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp; has a good suggestion.&amp;nbsp;Set Use for Marker was implemented in JMP 14 according to the Scripting Index:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="John_Powell_JMP_0-1670332742111.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47959i7337D02109C9A8F1/image-size/large?v=v2&amp;amp;px=999" role="button" title="John_Powell_JMP_0-1670332742111.png" alt="John_Powell_JMP_0-1670332742111.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;When using a function for the first time, it's good to look it up in the Scripting Index under the Help menu.&lt;/P&gt;
&lt;P&gt;You may also want to turn on the embedded log in the script editor, (Right-click &amp;gt; Show Embedded Log)&amp;nbsp; so you can see errors when you run your script.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="John_Powell_JMP_1-1670333434735.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47960iB1E021BD70A2024E/image-size/large?v=v2&amp;amp;px=999" role="button" title="John_Powell_JMP_1-1670333434735.png" alt="John_Powell_JMP_1-1670333434735.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 13:34:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577918#M78546</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2022-12-06T13:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577967#M78549</link>
      <description>&lt;P&gt;Thanks John,&lt;/P&gt;&lt;P&gt;I try to put in place your proposal inside Jthi's script without success ...&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please could you propose to me your update ?&lt;/P&gt;&lt;P&gt;rgds&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;Names Default To Here(1);&lt;BR /&gt;dt = Open(&lt;BR /&gt;"$DOWNLOADS/pokemons/Wafermap_pokemon.csv",&lt;BR /&gt;Import Settings(&lt;BR /&gt;End Of Line(CRLF, CR, LF),&lt;BR /&gt;End Of Field(Comma, CSV(1)),&lt;BR /&gt;Strip Quotes(0),&lt;BR /&gt;Use Apostrophe as Quotation Mark(0),&lt;BR /&gt;Use Regional Settings(0),&lt;BR /&gt;Scan Whole File(1),&lt;BR /&gt;Treat empty columns as numeric(0),&lt;BR /&gt;CompressNumericColumns(0),&lt;BR /&gt;CompressCharacterColumns(0),&lt;BR /&gt;CompressAllowListCheck(0),&lt;BR /&gt;Labels(1),&lt;BR /&gt;Column Names Start(1),&lt;BR /&gt;Data Starts(2),&lt;BR /&gt;Lines To Read("All"),&lt;BR /&gt;Year Rule("20xx")&lt;BR /&gt;)&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;dt:XCoord &amp;lt;&amp;lt; Data type(Numeric) &amp;lt;&amp;lt; Set Modeling Type(Ordinal);&lt;BR /&gt;dt:YCoord &amp;lt;&amp;lt; Data type(Numeric) &amp;lt;&amp;lt; Set Modeling Type(Ordinal);&lt;/P&gt;&lt;P&gt;// reduce Filename to only filename OR use full filepath and modify Images column's formula&lt;BR /&gt;dt:Filename &amp;lt;&amp;lt; Set Each Value(Word(-1, :Filename, "\"));&lt;BR /&gt;Show(Get Default Directory());&lt;/P&gt;&lt;P&gt;// This can be modified to get borders and so on if needfed&lt;BR /&gt;dt &amp;lt;&amp;lt; New Column("Images", Expression, None, &amp;lt;&amp;lt; Set Each Value(&lt;BR /&gt;Open(Get Default Directory() ||"images/" || :Filename, png);&lt;BR /&gt;));&lt;/P&gt;&lt;P&gt;height = 20;&lt;BR /&gt;weight = 20;&lt;/P&gt;&lt;P&gt;gb = dt &amp;lt;&amp;lt; Graph Builder(&lt;BR /&gt;Size(522, 451),&lt;BR /&gt;Show Control Panel(0),&lt;BR /&gt;Variables(X(:XCoord), Y(:YCoord)),&lt;BR /&gt;&lt;BR /&gt;:Images &amp;lt;&amp;lt; Set Use For Marker;&lt;BR /&gt;Bivariate( Y(:height),X(:weight) );&lt;BR /&gt;Bivariate[]&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 14:21:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/577967#M78549</guid>
      <dc:creator>BiX</dc:creator>
      <dc:date>2022-12-06T14:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/578020#M78558</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/45614"&gt;@BiX&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example I showed was for use with the Big Class Families.jmp sample data set. 'height', 'weight,' and 'picture' are columns in that data set, but are not in the table you create in your script.&lt;/P&gt;
&lt;P&gt;To use 'Set Use For Marker' in your script, you need to send the 'Set Use For Marker' message to the 'Images' column that you create in your script before the Graph Builder function.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To do this, replace everything starting with 'height = 20;' to the end with the following:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:Images &amp;lt;&amp;lt; Set Use For Marker;
gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size( 522, 451 ),
	Show Control Panel( 0 ),
	Variables( X( :XCoord ), Y( :YCoord ) ),
	Elements( Points( X, Y, Legend( 1 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size( 15 ), Marker Drawing Mode( "Normal" )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Notice that I added back the SendToReport code to set the Marker Size to 15 that you had earlier in this post.&amp;nbsp; If you change the size of the graph, you may want to change the Marker Size too.&lt;/P&gt;
&lt;P&gt;Please let us know how that works out for you.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 15:45:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/578020#M78558</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2022-12-06T15:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: Display PNG image from URL into a Wafer Map</title>
      <link>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/578427#M78581</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Thanks a lot !! Superbe !!&lt;/P&gt;&lt;P&gt;Thanks a lot Jthi,&amp;nbsp; for your help and your solution for JMP &amp;gt; v16&lt;/P&gt;&lt;P&gt;Solution for JMP v15 below&lt;/P&gt;&lt;P&gt;Merry Christmas&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Xavier&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BiX_0-1670396603699.png" style="width: 695px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48006i3BB3200275360723/image-dimensions/695x494?v=v2" width="695" height="494" role="button" title="BiX_0-1670396603699.png" alt="BiX_0-1670396603699.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Script JMP V15 :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// JMP V15 
Names Default To Here(1);
dt = Open(
	"$DOWNLOADS/pokemons/Wafermap_pokemon.csv",
	Import Settings(
		End Of Line(CRLF, CR, LF),
		End Of Field(Comma, CSV(1)),
		Strip Quotes(0),
		Use Apostrophe as Quotation Mark(0),
		Use Regional Settings(0),
		Scan Whole File(1),
		Treat empty columns as numeric(0),
		CompressNumericColumns(0),
		CompressCharacterColumns(0),
		CompressAllowListCheck(0),
		Labels(1),
		Column Names Start(1),
		Data Starts(2),
		Lines To Read("All"),
		Year Rule("20xx")
	)
);

dt:XCoord &amp;lt;&amp;lt; Data type(Numeric) &amp;lt;&amp;lt; Set Modeling Type(Ordinal);
dt:YCoord &amp;lt;&amp;lt; Data type(Numeric) &amp;lt;&amp;lt; Set Modeling Type(Ordinal);

// reduce Filename to only filename OR use full filepath and modify Images column's formula
dt:Filename &amp;lt;&amp;lt; Set Each Value(Word(-1, :Filename, "\"));
Show(Get Default Directory());

// This can be modified to get borders and so on if needfed
dt &amp;lt;&amp;lt; New Column("Images", Expression, None, &amp;lt;&amp;lt; Set Each Value(
	Open(Get Default Directory() ||"images/" || :Filename, png);
));

:Images &amp;lt;&amp;lt; Set Use For Marker;
gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size( 522, 451 ),
	Show Control Panel( 0 ),
	Variables( X( :XCoord ), Y( :YCoord ) ),
	Elements( Points( X, Y, Legend( 1 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size( 15 ), Marker Drawing Mode( "Normal" )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 07 Dec 2022 07:46:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-PNG-image-from-URL-into-a-Wafer-Map/m-p/578427#M78581</guid>
      <dc:creator>BiX</dc:creator>
      <dc:date>2022-12-07T07:46:21Z</dc:date>
    </item>
  </channel>
</rss>

