> 
> What I’m finding is that the “label” for individual images does not carry 
> over when those images are put into an ImageArray. 

for me it works with this example code:


  Dim StackingFrames As new GM16ImageArrayMBS
  Dim StackingMontage As GM16MontageMBS
  Dim Thumbs As Picture
  
  'Create the image
  dim c as new GM16ColorMBS("white")
  dim g as new GM16GeometryMBS(100,100)
  dim image as new GM16ImageMBS(g, c)
  
  'Label the image
  image.label("Sample label") 
  System.DebugLog(image.label) ' <— This displays “Sample label"
  
  MsgBox image.label
  
  'Put the current image into the array
  StackingFrames.insert(image) 
  MsgBox StackingFrames.Image(0).label ' <— This shows as Null
  StackingFrames.image(0).label("Sample label") ' <— OK, let’s try it this 
way...
  MsgBox StackingFrames.Image(0).label ' <— This *also* shows as Null
  
  'Update the thumbnails
  Thumbs = StackingFrames.montageImages(StackingMontage).Image(0).CopyPicture ' 
<— This results in a nice thumbnail montage, but alas, no labels.
  



Sincerely
Christian

-- 
Read our blog about news on our plugins:

http://www.mbsplugins.de/

_______________________________________________
Mbsplugins_monkeybreadsoftware.info mailing list
[email protected]
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info

Reply via email to