<?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 overlay picture or text on top of another picture? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822133#M100155</link>
    <description>&lt;P&gt;Yep!&lt;/P&gt;</description>
    <pubDate>Thu, 12 Dec 2024 09:04:26 GMT</pubDate>
    <dc:creator>miguello</dc:creator>
    <dc:date>2024-12-12T09:04:26Z</dc:date>
    <item>
      <title>How to overlay picture or text on top of another picture?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822116#M100150</link>
      <description>&lt;P&gt;I'd like to have a banner as a title of my app with my company's logo. But I would also like to display other image and some text on top of that banner. How can I overlay several display boxes?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 07:07:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822116#M100150</guid>
      <dc:creator>miguello</dc:creator>
      <dc:date>2024-12-12T07:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to overlay picture or text on top of another picture?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822127#M100151</link>
      <description>&lt;P&gt;Depends on how you wish it to look like. Can you provide some sort of mock-up of the final result?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 07:21:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822127#M100151</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-12-12T07:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to overlay picture or text on top of another picture?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822129#M100152</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-12-11 234904.png" style="width: 377px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71059i37C16FB98A0C1E2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-12-11 234904.png" alt="Screenshot 2024-12-11 234904.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 07:51:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822129#M100152</guid>
      <dc:creator>miguello</dc:creator>
      <dc:date>2024-12-12T07:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to overlay picture or text on top of another picture?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822131#M100153</link>
      <description>&lt;P&gt;Do you have banner which covers the whole top part of the app? And you wish to add image/text on top of it?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 08:25:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822131#M100153</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-12-12T08:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to overlay picture or text on top of another picture?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822133#M100155</link>
      <description>&lt;P&gt;Yep!&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 09:04:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822133#M100155</guid>
      <dc:creator>miguello</dc:creator>
      <dc:date>2024-12-12T09:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to overlay picture or text on top of another picture?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822134#M100156</link>
      <description>&lt;P&gt;Maybe this gives some ideas&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

banner = Open("$SAMPLE_IMAGES/tile.jpg", jpg);
banner_extra_image = Open("$SAMPLE_IMAGES/pi.gif", jpg);
banner_text = "Version 1.0.0";

// https://community.jmp.com/t5/Uncharted/Add-Text-to-a-Picture/ba-p/513376
{xSize, ySize} = banner &amp;lt;&amp;lt; size;
gb = Graph Box(
	&amp;lt;&amp;lt;backgroundcolor("orange"), 
	FrameSize(xSize + 1, ySize + 1),
	X Scale(0, xSize + 1),
	Y Scale(0, ySize + 1), 
	&amp;lt;&amp;lt; Add Image(image(banner_extra_image), bounds(top(10), Left(1), bottom(10), Right(10))),
	&amp;lt;&amp;lt; Add Image(image(banner), bounds(top(0), Left(0), bottom(ySize), Right(xSize + 1))), 
	Text Color("White"),
	Text Font("Helvetica", 30, "Bold"),
	Text(Counterclockwise, {xSize, 10}, banner_text),
);

updated = gb[framebox(1)] &amp;lt;&amp;lt; getpicture;
updated &amp;lt;&amp;lt; crop(Left(1), top(1), Right(xSize + 1), bottom(ySize + 1));

nw = New Window("",
	V List Box(
		updated
	)
);

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Dec 2024 09:24:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822134#M100156</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-12-12T09:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to overlay picture or text on top of another picture?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822135#M100157</link>
      <description>&lt;P&gt;Hmmm.... Very interesting. And yes, it works!&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 09:46:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-overlay-picture-or-text-on-top-of-another-picture/m-p/822135#M100157</guid>
      <dc:creator>miguello</dc:creator>
      <dc:date>2024-12-12T09:46:26Z</dc:date>
    </item>
  </channel>
</rss>

