Re: [MBS] GraphicsMagick image array labels not showing in Montage

2016-01-31 Thread Christian Schmitz

> Am 31.01.2016 um 17:06 schrieb William Koperwhats :
> 
> Christian,
> 
> Are you saying that you are producing a montage image that contains the image 
> labels similar to this one?
> 

I just wrote you that the label property works here.
Sorry, I didn't try the montage.

Sincerely
Christian

-- 
Read our blog about news on our plugins:

http://www.mbsplugins.de/

___
Mbsplugins_monkeybreadsoftware.info mailing list
mbsplugins@monkeybreadsoftware.info
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info


[MBS] ZipFileInfoMBS and Dates

2016-01-31 Thread Michael Diehr
Hi Christian,

I'm getting some weird results where the Month and Day both seem to be off by 
one and I'm wondering if the documentation is wrong or I'm doing something 
wrong?

Here's my code:
  
  dim zi as new ZipFileInfoMBS
  dim d as date = f.ModificationDate
  zi.day = d.day
  zi.month = d.month
  zi.year = d.year
  zi.hour = d.hour
  zi.minute = d.minute
  zi.second = d.second

The documentation for ZipFileInfo says that Month, Hour, Minute, and Second are 
all zero-based, but that Day is 1-based [1..31].


___
Mbsplugins_monkeybreadsoftware.info mailing list
mbsplugins@monkeybreadsoftware.info
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info


Re: [MBS] ZipFileInfoMBS and Dates

2016-01-31 Thread Michael Diehr
Ok, I see from your example that you do need to subtract one from the Month, or 
just use the  .SetDate(date) method which looks even easier. 
Problem solved.




'info.Day=d.day
'info.Month=d.Month-1
'info.Year=d.Year
'info.Minute=d.Minute
'info.hour=d.hour
'info.Second=d.Second

 info.SetDate d



> On Jan 31, 2016, at 4:53 PM, Michael Diehr  wrote:
> 
> Hi Christian,
> 
> I'm getting some weird results where the Month and Day both seem to be off by 
> one and I'm wondering if the documentation is wrong or I'm doing something 
> wrong?
> 
> Here's my code:
> 
>  dim zi as new ZipFileInfoMBS
>  dim d as date = f.ModificationDate
>  zi.day = d.day
>  zi.month = d.month
>  zi.year = d.year
>  zi.hour = d.hour
>  zi.minute = d.minute
>  zi.second = d.second
> 
> The documentation for ZipFileInfo says that Month, Hour, Minute, and Second 
> are all zero-based, but that Day is 1-based [1..31].
> 
> 
> ___
> Mbsplugins_monkeybreadsoftware.info mailing list
> mbsplugins@monkeybreadsoftware.info
> https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info

___
Mbsplugins_monkeybreadsoftware.info mailing list
mbsplugins@monkeybreadsoftware.info
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info