active questions tagged imagelist - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T22:53:39Z http://stackoverflow.com/feeds/tag/imagelist http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1656567/image-index-of-treeview-node-changes-upon-selection 1 Image index of TreeView node changes upon selection. Sudhir 2009-11-01T06:58:30Z 2009-11-24T22:46:43Z <p>When I tried using the imagelist in treeview, the image index changes when treenode is clicked. I have no idea why it is happening. Can anyone help me?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1772238/imagelist-transparency-not-working-at-runtime 0 ImageList Transparency not working at runtime Jack B Nimble 2009-11-20T17:55:49Z 2009-11-20T18:26:11Z <p>I am using 32bit PNG files with transparency. I added them to an image list with properties:</p> <pre><code>ColorDepth: Depth32Bit TransparentColor: Transparent </code></pre> <p>When I assign the image to my toolbar button, it previews in Visual Studio fine with the correct transparency. But when I run the application the transparency is all messed up with black covering the semi-transparent regions. </p> <p>How do I fix this?</p> <p><img src="http://giftmanager.biz/files/good.jpg" alt="alt text" title="Toolbar Preview in Visual Studio"></p> <p><img src="http://giftmanager.biz/files/bad.jpg" alt="alt text" title="Runtime version"></p> http://stackoverflow.com/questions/1729417/how-to-export-images-from-an-image-list-in-vs2005 3 How to Export Images from an Image List in VS2005? cbuck12000 2009-11-13T14:09:08Z 2009-11-20T13:05:35Z <p>Using Visual Studio 2005, is there a way to export the images in an Image List to individual files on my PC? Using the IDE, I select the Image List and view its properties. In the "Images" property, I launch the Images Collection Editor dialog. I can only add and remove images, but I cannot find a way to export an image that is already in the list.</p> <p>Why? The developer who made the original list has left our company and I need the images for an ASP.NET application (will convert to .jpeg).</p> <p>Thank you for the help!</p> http://stackoverflow.com/questions/1636091/imagelist-cf-net-and-net-designer-problem 0 Imagelist cf.net and .net designer problem FrenkR 2009-10-28T09:30:01Z 2009-10-28T10:55:00Z <p>After some testing, I found out that streaming of ImageList using CF WinForms designer is different from streaming using WinForms designer. If images are added using cf.net designer and form is reopened using winfrorms designer an exception "Method 'System.Windows.Forms.Design.ImageListDesigner+OriginalImageCollection.Add' not found. " is raised.</p> <p>Is there any option to change default streaming or any custom ImageList from some other provider (3-party) that can be used in both designers?</p> <p>Any other recommended solution?</p> http://stackoverflow.com/questions/1606346/windows-forms-net-3-5-using-resource-images-for-a-treeview-control 0 Windows Forms .NET 3.5 using resource images for a Treeview control Anthony Johnston 2009-10-22T10:33:58Z 2009-10-22T11:09:28Z <p>Hello SO,</p> <p>When populating my treeview I would like to use the same images that I use in my toolbar etc which are stored in a resource file.</p> <p>The treeview seems to on accept images via an image list.</p> <p>I was thinking of reflecting and adding the resources to an image list on load...</p> <p>How do you guyz n girlz generally do this?</p> http://stackoverflow.com/questions/1593162/generate-thumbnail-of-pdf-document 0 Generate thumbnail of pdf document. unknown (google) 2009-10-20T08:26:03Z 2009-10-20T08:37:26Z <p>Duplicate of (amongst others)</p> <ul> <li><a href="http://stackoverflow.com/questions/1593162/generate-thumbnail-of-pdf-document">Generate thumbnail of pdf document</a></li> <li><a href="http://stackoverflow.com/questions/1564451/how-to-show-thumbnail-of-pdf-in-listview-c-net">How to show thumbnail of pdf in listview C#.net?</a></li> <li><a href="http://stackoverflow.com/questions/1564750/how-to-place-thumbnail-of-pdf-in-listview">how to place thumbnail of pdf in listview</a></li> <li><a href="http://stackoverflow.com/questions/1593079/develop-an-application-similar-to-windows-explorer">develop an application similar to windows explorer</a></li> </ul> <p>Please help to generate thumbnail image for pdf in c#.</p> <pre><code> //Treeview1_AfterSelect private void Treeview1_AfterSelect(System.Object sender, System.Windows.Forms.TreeViewEventArgs e) { string strNode; strNode = ((TreeView)sender).SelectedNode.FullPath; ImgPath = strNode; //pictureBox4.Image = null; string strnode = e.Node.FullPath.ToString(); int idx = strnode.IndexOf("\\"); if (idx &gt; 1) { // show list of favorites in this folder if (Treeview1.SelectedNode == null) { //m_newFolderCommand.Enabled = False } else { //m_newFolderCommand.Enabled = True strfinalpath = ((TreeView)sender).SelectedNode.FullPath; // Need to check to see if this folder needs subfolder reading... if (Treeview1.SelectedNode.Nodes.Count == 1) { try { // It does, so remove the placeholder folder. Treeview1.SelectedNode.Nodes.Clear(); // Now populate the nodes with the subfolders. AddFolders(Treeview1.SelectedNode, Treeview1.SelectedNode.Tag.ToString()); } catch (Exception ex) { } } if ((Treeview1.SelectedNode.Text != "Loading...")) { if (Treeview1.SelectedNode.Text == frmSettings.strDirPath.ToString()) { folder = strfinalpath; TreeListViewDragDrop.Search.strfilepath = null; TreeListViewDragDrop.Search.intDeciCnt = 0; } else { if ((Treeview1.SelectedNode.Text != strAppPath)) { folder = Treeview1.SelectedNode.Tag.ToString(); TreeListViewDragDrop.Search.strfilepath = null; TreeListViewDragDrop.Search.intDeciCnt = 0; } } } if (ListView1.Items.Count &gt; 0) { ListView1.Items.Clear(); } ImageList imageList = new ImageList(); if (folder != null &amp;&amp; System.IO.Directory.Exists(folder)) { try { string[] arrImageName=new string[1000]; int Count = 0; string CutName; DirectoryInfo dir = new DirectoryInfo(@folder); foreach (FileInfo file in dir.GetFiles()) { try { string strSplit; strSplit = file.FullName; string[] ClickImg = strSplit.Split('.'); string strPDFpath = "C:\\Documents and Settings\\Lenin\\My Documents\\pdf.jpg"; if (ClickImg[1] == "pdf") //if (ClickImg[1] == "pptx") { ShellThumbnail shellThumbnail = new ShellThumbnail(); Bitmap bmp = shellThumbnail.GetThumbnail(@file.FullName); bmp.Save(@folder +"\\"+ "Test.bmp"); ////imageList.ImageSize = new Size(140, 140); ////imageList.ColorDepth = ColorDepth.Depth32Bit; ////Image image = (Image)bit; //////Image img1 = Image.FromFile(strPDFpath); ////CutName = file.FullName; ////CutName = CutName.Replace(folder, ""); ////CutName = CutName.Replace("\\", ""); ////arrImageName[Count] = CutName; ////imageList.Images.Add(FormatImage(imageList.ImageSize.Width, image)); //////imageList.Images.Add(FormatImage(imageList.ImageSize.Width, img1)); ////Count = Count + 1; //imageList.ImageSize = new Size(140, 140); //imageList.ColorDepth = ColorDepth.Depth32Bit; //Image img1 = Image.FromFile(strPDFpath); //CutName = file.FullName; //CutName = CutName.Replace(folder, ""); //CutName = CutName.Replace("\\", ""); //arrImageName[Count] = CutName; //imageList.Images.Add(FormatImage(imageList.ImageSize.Width, img1)); //Count = Count + 1; } else { imageList.ImageSize = new Size(140, 140); imageList.ColorDepth = ColorDepth.Depth32Bit; Image img1 = Image.FromFile(file.FullName); CutName = file.FullName; CutName = CutName.Replace(folder, ""); CutName = CutName.Replace("\\", ""); arrImageName[Count] = CutName; imageList.Images.Add(FormatImage(imageList.ImageSize.Width, img1)); Count = Count + 1; } } catch { Console.WriteLine("This is not an image or pdf file."); } } for (int j = 0; j &lt; imageList.Images.Count; j++) { this.ListView1.Items.Add((j + 1) + "/" + imageList.Images.Count + " " + "\r\n" + arrImageName[j]); this.ListView1.Items[j].ImageIndex = j; } this.ListView1.View = View.LargeIcon; this.ListView1.LargeImageList = imageList; //import(folder); } catch (Exception ex) { } } } } } </code></pre> <p>Im able to generate thumbnail for image as below</p> <pre><code> private Image FormatImage(int width, Image img) { Image thumb = new Bitmap(width, width); Image tmp = null; if (img.Width &lt; width &amp;&amp; img.Height &lt; width) { using (Graphics g = Graphics.FromImage(thumb)) { int xoffset = (int)((width - img.Width) / 2); int yoffset = (int)((width - img.Height) / 2); g.DrawImage(img, xoffset, yoffset, img.Width, img.Height); } } else { Image.GetThumbnailImageAbort myCallback = new Image.GetThumbnailImageAbort(ThumbnailCallback); if (img.Width == img.Height) { thumb = img.GetThumbnailImage( width, width, myCallback, IntPtr.Zero); } else { int k = 0; int xoffset = 0; int yoffset = 0; if (img.Width &lt; img.Height) { k = (int)(width * img.Width / img.Height); tmp = img.GetThumbnailImage(k, width, myCallback, IntPtr.Zero); xoffset = (int)((width - k) / 2); } if (img.Width &gt; img.Height) { k = (int)(width * img.Height / img.Width); tmp = img.GetThumbnailImage(width, k, myCallback, IntPtr.Zero); yoffset = (int)((width - k) / 2); } using (Graphics g = Graphics.FromImage(thumb)) { g.DrawImage(tmp, xoffset, yoffset, tmp.Width, tmp.Height); // Pen p1 = new Pen(Color.Red); //g.DrawLine(p1, 0, 30, 40, 50); } } } using (Graphics g = Graphics.FromImage(thumb)) { g.DrawRectangle(Pens.Black, 0, 0, thumb.Width - 1, thumb.Height - 1); } InitializeListView(); return thumb; } private void InitializeListView() { // Set the view to show details. ListView1.View = View.Details; // Allow the user to edit item text. ListView1.LabelEdit = true; // Allow the user to rearrange columns. ListView1.AllowColumnReorder = true; // Select the item and subitems when selection is made. ListView1.FullRowSelect = true; // Display grid lines. ListView1.GridLines= true; ListView1.BorderStyle=BorderStyle.FixedSingle; // Sort the items in the list in ascending order. // ListView1.Sorting = SortOrder.Ascending; // Attach Subitems to the ListView ListView1.Columns.Add("Title", 300, HorizontalAlignment.Left); ListView1.Columns.Add("ID", 70, HorizontalAlignment.Left); ListView1.Columns.Add("Price", 70, HorizontalAlignment.Left); ListView1.Columns.Add("Publi-Date", 100, HorizontalAlignment.Left); // The ListViewItemSorter property allows you to specify the // object that performs the sorting of items in the ListView. // You can use the ListViewItemSorter property in combination // with the Sort method to perform custom sorting. //_lvwItemComparer = new ListViewItemComparer(); //this.listView1.ListViewItemSorter = _lvwItemComparer; } public bool ThumbnailCallback() { return true; } </code></pre> <p>But im struck up at a point where i have to read the first page of pdf and generate thumbnail image.</p> <pre><code> if (ClickImg[1] == "pdf") //if (ClickImg[1] == "pptx") { ShellThumbnail shellThumbnail = new ShellThumbnail(); Bitmap bmp = shellThumbnail.GetThumbnail(@file.FullName); bmp.Save(@folder +"\\"+ "Test.bmp"); ////imageList.ImageSize = new Size(140, 140); ////imageList.ColorDepth = ColorDepth.Depth32Bit; ////Image image = (Image)bit; //////Image img1 = Image.FromFile(strPDFpath); ////CutName = file.FullName; ////CutName = CutName.Replace(folder, ""); ////CutName = CutName.Replace("\\", ""); ////arrImageName[Count] = CutName; ////imageList.Images.Add(FormatImage(imageList.ImageSize.Width, image)); //////imageList.Images.Add(FormatImage(imageList.ImageSize.Width, img1)); ////Count = Count + 1; //imageList.ImageSize = new Size(140, 140); //imageList.ColorDepth = ColorDepth.Depth32Bit; //Image img1 = Image.FromFile(strPDFpath); //CutName = file.FullName; //CutName = CutName.Replace(folder, ""); //CutName = CutName.Replace("\\", ""); //arrImageName[Count] = CutName; //imageList.Images.Add(FormatImage(imageList.ImageSize.Width, img1)); //Count = Count + 1; } else { imageList.ImageSize = new Size(140, 140); imageList.ColorDepth = ColorDepth.Depth32Bit; Image img1 = Image.FromFile(file.FullName); CutName = file.FullName; CutName = CutName.Replace(folder, ""); CutName = CutName.Replace("\\", ""); arrImageName[Count] = CutName; imageList.Images.Add(FormatImage(imageList.ImageSize.Width, img1)); Count = Count + 1; } </code></pre> <p>Any help.Thanks in advance.</p> http://stackoverflow.com/questions/1030538/how-can-i-replace-an-existing-image-on-a-winforms-imagelist 0 How can I replace an existing image on a winforms ImageList? Joan Venge 2009-06-23T03:45:51Z 2009-10-06T20:00:02Z <p>How can I replace an existing image on a winforms <code>ImageList</code>?</p> <p>I tried this:</p> <pre><code>this.CoolPics.Images [ 2 ] = // new image this.ListViewControl.SmallImageList = this.CoolPics; </code></pre> <p>However the new image is not rescaled the way the others are, when I used the <code>this.CoolPics.Images.Add</code> method.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1520008/how-to-make-frame-in-imagelist-component-every-image-dotnet 0 how to make frame in imagelist component every image dotnet Ramesh 2009-10-05T13:13:41Z 2009-10-05T13:13:41Z <p>hi</p> <p>how to make frame in imagelist component every image in dotnet</p> <p>pls help me anybody</p> http://stackoverflow.com/questions/1459045/combining-bitmaps-imagelists-win32 1 Combining Bitmaps / ImageLists (Win32) peterchen 2009-09-22T09:27:15Z 2009-09-22T16:46:59Z <p>Is it possible to create an image list from multiple bitmaps, or to combine multiple image lists into one.</p> <p>For sake of simplicity, same element dimensions and transparent color could be assumed. </p> <p>Reason: I am currently dealing with a very long image list containing four groups of icons and notable "reserved" areas between them. For editing it would be easier to split into four bitmaps, combine them on the fly and calculate icon indices dynamically.</p> http://stackoverflow.com/questions/1432222/insert-a-image-in-the-imagelist-at-the-perticular-index 0 insert a image in the ImageList at the perticular index Adeel 2009-09-16T10:43:10Z 2009-09-16T10:43:10Z <p>I want to insert a image in the ImageList at the specified index or you can say that replace the existing image at the perticular index but the Add method can'nt able to resolve this issue ,</p> <p>imageList.Images.Add("w",Image.FromFile("C:\Folder.jpg"));</p> <p>Or,</p> <p>imageList.Images[listView1.SelectedItems[0].Index]. ????</p> <p>what can i do????</p> http://stackoverflow.com/questions/1042546/create-timagelist-by-specifying-paths-only 1 Create TImageList by specifying paths only Martijn 2009-06-25T07:14:37Z 2009-08-14T10:03:34Z <p>In Delphi 2007, images are loaded in a TImageList at design time. This introduces the following problem:</p> <ul> <li>I have a folder containing the graphics I'm using in my application</li> <li>Whenever I want to change, say, the icon for 'save', I have to <ol> <li>Change the graphic in the folder (for my own purposes)</li> <li>Iterate along all TImageLists in the application</li> <li>Change the graphic in the TImageList</li> </ol></li> </ul> <p>Is there any way (component, compile script, ...) to perform steps 2 and 3 automatically, that is, specify only paths of graphics at design time, creating a dependence on the actual graphic files?</p> http://stackoverflow.com/questions/1232941/how-to-add-an-imagelist-to-wpf-listview 0 How to add an imagelist to WPF listview? Joan Venge 2009-08-05T12:28:05Z 2009-08-05T15:19:27Z <p>I don't even see it in the Toolbox in the designer. Is it called something else?</p> <p>I am trying to port my winforms listview to wpf.</p> http://stackoverflow.com/questions/1153572/how-do-i-use-an-himagelist-from-setupdigetclassimagelist-as-a-net-imagelist 0 How do I use an HIMAGELIST (from SetupDiGetClassImageList) as a .NET ImageList? Roger Lipscombe 2009-07-20T13:26:16Z 2009-07-20T15:50:46Z <p>I've got an <code>HIMAGELIST</code> (from <code>SetupDiGetClassImageList</code>) and I'd like to use it with a Windows Forms <code>ListView</code>, which needs an <code>ImageList</code>. There's no <code>ImageList.FromHandle</code>.</p> <p>How do I use my <code>HIMAGELIST</code> as an <code>ImageList</code>?</p> http://stackoverflow.com/questions/796186/animated-gif-in-imagelist-tabpage 0 Animated GIF in ImageList / TabPage lc 2009-04-28T04:13:49Z 2009-07-15T18:32:40Z <p>I'd like to show an animated GIF as the tab image on a <code>TabPage</code>.</p> <p>If I add my image to an <code>ImageList</code> and use the <code>TabPage.ImageIndex</code> property, it only shows the first frame (and doesn't animate):</p> <pre><code>ImageList imageList = new ImageList(); imageList.Images.Add(Properties.Resources.my_animated_gif); tabControl.ImageList = imageList; tabPage.ImageIndex = 0; </code></pre> <p>A few forums on the net also suggest <code>ImageList</code> doesn't support animated GIFs.</p> <p>Is there an easy way to display an animated GIF as an image on a <code>TabPage</code>? Do I have to owner-draw and animate the image?</p> http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit 2 Using ImageList from VB6 application causes crash on Windows 7.0 64-bit Joel Spolsky 2009-06-19T16:47:09Z 2009-06-19T19:28:29Z <p>I have an old VB6 application that uses an ImageList control from COMCTL32.OCX ("Microsoft Windows Common Controls 5.0 (SP2)") to provide icons for TreeViews and ListViews.</p> <p>The app won't even launch on Windows 7.0 64 bit. The minute it tries to load the form that has the ImageList on it, it crashes (well, actually, the app winks out, exiting without a trace).</p> <p>Removing the ImageList from the form solves the problem.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/914323/display-icon-on-form-in-vb-net 1 Display Icon on form in vb.net MaQleod 2009-05-27T06:52:36Z 2009-05-27T07:50:00Z <p>How would I display an Icon at 48x48 resolution on a form in vb.net? I looked at using imagelist , but I don't know how to display the image that I add to the list using code and how to specify it's coordinates on the form. I did some google searching but none of the examples really show what I need to know.</p> http://stackoverflow.com/questions/880585/can-system-windows-forms-columnheader-use-a-different-image-then-one-from-the-mai 0 Can System.Windows.Forms.ColumnHeader use a different image then one from the main ImageList? MiffTheFox 2009-05-19T01:26:16Z 2009-05-19T12:29:52Z <p>I have an ListView set up to sort, and I have that working well.</p> <p>However, when the ListView is sorted, no indication is provided as to the current sort column and order.</p> <p>I tried a solution setting the ColumnHeader.ImageKey property whenever sorting, but I want to be able to use images that aren't the size specified by the ListView's SmallImageList.</p> <p>Is there any way to do this <em>without</em> using OwnerDraw mode?</p> http://stackoverflow.com/questions/829075/who-is-responsible-for-clearing-up-memory-from-image-lists 1 Who is responsible for clearing up memory from image lists? Mark Ingram 2009-05-06T11:00:10Z 2009-05-08T10:01:57Z <p>If I have a CImageList object (a simple wrapper around a HIMAGELIST), and I call:</p> <pre><code>m_pImageList-&gt;Replace(...); </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/k10cwcdb.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/k10cwcdb.aspx</a> </p> <p>Who is responsible for clearing up the memory? Does the image list create a copy of any bitmap I pass in (i.e. can I create a CBitmap object on the stack then pass the address of this to the function)? Or must I create it on the heap and remember to manually free all the memory when the image list is destroyed?</p> <p>MSDN isn't very clear on the subject of who's responsible.</p> http://stackoverflow.com/questions/532777/pngs-in-delphi-2009-imagelists-and-images 2 PNGs in Delphi 2009 Imagelists and Images Roddy 2009-02-10T15:24:22Z 2009-02-19T17:48:49Z <p>D2009 introduces PNG support for Images and Imagelists.</p> <p>However...</p> <p>I have an imagelist containing png images with alpha. I want to place one of these on a form using a TImage. How do I do this and get the image nicely composited?</p> <p>As an example of the problem I'm facing the code below fails to work correctly, and produces the effect shown:</p> <pre><code>ImageList.GetBitmap(index, Image1.Picture.Bitmap); </code></pre> <p><img src="http://clip2net.com/clip/m0/1234439882-clip-5kb.png" alt="alt text" /></p> <p>To explain a bit more: </p> <p>Drop a Timage on a form, and at design time, load a PNG file with alpha using the Picture property. Note how it is correctly composited with full transparency onto the form.</p> <p>Now, at design time, add a second empty Timage, add a TImagelist, and add the same PNG to the imagelist. How can I assign the PNG in the TImageList to the second TImage, and have it look identical to the first one?</p> http://stackoverflow.com/questions/513995/net-how-to-load-an-image-into-an-imagelist 0 .NET: How to load an image into an ImageList? Ian Boyd 2009-02-05T00:21:48Z 2009-02-05T01:09:12Z <p>i have an image that contains a series of images, e.g.:</p> <p><img src="http://i42.tinypic.com/344v04j.jpg" alt="alt text" /></p> <p>In the olden days, i would load the image into the <a href="http://msdn.microsoft.com/en-us/library/bb761389(VS.85).aspx" rel="nofollow">ImageList common control</a> using such API calls as:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/bb761512(VS.85).aspx" rel="nofollow">ImageList_Add</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/bb761557(VS.85).aspx" rel="nofollow">ImageList_LoadImage</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/bb761435(VS.85).aspx" rel="nofollow">IImageList::Add</a></li> </ul> <p>What is the .NET method of achieving the same result with the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.imagelist.aspx" rel="nofollow">.NET ImageList class</a>?</p> <p><hr /></p> <p><strong>Note:</strong> The image is only an example. My actual image is a traditional toolbar image list image, with 179 16x16 button images.</p> http://stackoverflow.com/questions/166676/extracting-png-images-from-delphi-2009-imagelist 1 Extracting PNG images from Delphi 2009 imagelist ajob 2008-10-03T12:54:16Z 2008-10-09T14:42:57Z <p>The TImageList of Delphi 2009 has support for PNG images by adding them in the imagelist editor. Is there any way to extract a TPngImage from a TImagelist and preserving the alpha channel?</p> <p>What I want to do is actually to extract the images from one TImageList, make a disabled version of them and then add them to another TImageList. During this operation I would of course like to preserve the alpha channel of the PNG images.</p> http://stackoverflow.com/questions/111551/listview-icons-show-up-blurry-c 1 Listview icons show up blurry (C#) Balk 2008-09-21T17:57:45Z 2008-09-21T23:06:57Z <p>I'm attempting to display a "LargeIcon" view in a listview control, however the images I specify are blurry. This is what I have so far: <img src="http://img220.imageshack.us/img220/1005/blurryiconsql3.jpg" alt="alt text" /></p> <p>The .png files are 48x48 and that's what I have it set to display at in the ImageList properties. There's one thing that I've noticed (which is probably the cause) but I don't know how to change it. Inside the "Images Collection Editor" where you choose what images you want for the ImageList control, it looks like it's setting the wrong size for each image. <img src="http://img83.imageshack.us/img83/5218/imagepropertiesmf9.jpg" alt="alt text" /></p> <p>As you can see the "PhysicalDimension" and the "Size" is set to 16x16 and not abled to be manipulated. Does anyone have any ideas? Many thanks!</p>