<?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: Zooming into Picture Box Image in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924877#M108296</link>
    <description>&lt;P&gt;wow, very creative/useful workaround !!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jan 2026 18:08:49 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2026-01-19T18:08:49Z</dc:date>
    <item>
      <title>Zooming into Picture Box Image</title>
      <link>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924752#M108290</link>
      <description>&lt;P&gt;I have a window that pops up with an image, I would like to have the users able to zoom into the image to see more details but I don't see any zoom capabilities in the window. How can I accomplish this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Current Data Table();&lt;BR /&gt;// Plot bitmap
bitmap = New Window( (dt &amp;lt;&amp;lt; Get Name()) || " Bit Map",
	pic_file = Open( file_path, png);
	pic_file &amp;lt;&amp;lt; Set Size( {500, 500} );
	pb = Picture Box( pic_file );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 18 Jan 2026 21:53:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924752#M108290</guid>
      <dc:creator>ClassDendrogram</dc:creator>
      <dc:date>2026-01-18T21:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Zooming into Picture Box Image</title>
      <link>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924767#M108293</link>
      <description>&lt;P&gt;Offering images through Graph Box is one option which would allow the users can use Magnifier tool from toolbar.&lt;/P&gt;
&lt;P&gt;Edit: forgot to add example script&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

imgBox = Graph Box(frameSize(500, 500), SuppressAxes);
win = New Window("Image", imgBox);

img = Open("$SAMPLE_IMAGES/tile.jpg", "jpg");
img &amp;lt;&amp;lt; Set Size({500,500});

fb = win[framebox(1)];
fb &amp;lt;&amp;lt; AddImage(Image(img));
img_seg = fb&amp;lt;&amp;lt; FindSeg(PictSeg(1));

img_seg &amp;lt;&amp;lt; Fill Graph;
img_seg &amp;lt;&amp;lt; lock(1);

Write();&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Jan 2026 06:11:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924767#M108293</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-01-19T06:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Zooming into Picture Box Image</title>
      <link>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924877#M108296</link>
      <description>&lt;P&gt;wow, very creative/useful workaround !!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jan 2026 18:08:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924877#M108296</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-19T18:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Zooming into Picture Box Image</title>
      <link>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924883#M108299</link>
      <description>&lt;P&gt;After defining &lt;FONT face="courier new,courier"&gt;imageZoom&lt;/FONT&gt;, one can use it wherever it's needed:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;PictureBoxZoom = Function( {filename},
	window:img = Open( filename, "jpg" );
	Graph Box(
		frameSize( 300, 300 ),
		SuppressAxes,
		&amp;lt;&amp;lt;AddImage( Image( window:img ), Fill Graph, Lock( 1 ) )
	);
);

New Window( "Image",
	Outline Box( "Zoom Image",
		Text Box( "press CTRL to zoom"),
PictureBoxZoom( "$SAMPLE_IMAGES/tile.jpg" ) 
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Jan 2026 19:53:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Zooming-into-Picture-Box-Image/m-p/924883#M108299</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-19T19:53:08Z</dc:date>
    </item>
  </channel>
</rss>

