M$ 365 Defender

2022-06-27 Thread John
A friend has been offered Microsoft 365 Defender and asked my advice. From what I can see it is a souped-up version of Defender only available to Enterprise clients or on payment of $5 per month - is this correct? John John Weller 07976 393631 --- StripMime Report -- processed MIME

Re: GDIPlus - Resize

2022-06-27 Thread Paul Newton
Hi Frank Exactly what I needed - funnily enough I had experimented with GetThumbnailImage but as your link points out The function GetThumbnailImage can be used to get a resized image, but the result may come with less quality. The sample below does the same thing, but creates an image with a

Re: GDIPlus - Resize

2022-06-27 Thread Frank Cazabon
Does this site help? VfpImaging VFP tips and tricks blog: RESIZE IMAGES WITH VFP9 and GDI+ Frank. Frank Cazabon On 27/06/2022 8:40 am, Paul Newton wrote: Unfortunately Alan's ResizeImage function won't work in

Re: GDIPlus - Resize

2022-06-27 Thread Paul Newton
Unfortunately Alan's ResizeImage function won't work in this case.  The source is 256x256 and the required target is 180x140.  Using ResizeImage with the required target size produces an image which is 140x140. I am sure that there is a way to do this with GDIPlusX.  By the way, my original BM

Re: GDIPlus - Resize

2022-06-27 Thread Paul Newton
That look good Alan - I'm about to try it out.  Many thanks Paul On 27/06/2022 13:10, Alan Bourke wrote: Also https://docs.microsoft.com/en-us/previous-versions/windows/desktop/wiaaut/-wiaaut-startpage --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text

Re: GDIPlus - Resize

2022-06-27 Thread Alan Bourke
Also https://docs.microsoft.com/en-us/previous-versions/windows/desktop/wiaaut/-wiaaut-startpage -- Alan Bourke alanpbourke (at) fastmail (dot) fm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: https://mail.leafe.com/mailman/list

Re: GDIPlus - Resize

2022-06-27 Thread Alan Bourke
Paul Take a look at the Windows Image Acquisition API, the link below is a method that I use to resize images from a signature pad. https://gist.github.com/AlanPBourke/b4ad122636978245a678a65155ba51e7 -- Alan Bourke alanpbourke (at) fastmail (dot) fm _

GDIPlus - Resize

2022-06-27 Thread Paul Newton
Hi all I have a form with an ImageCanvas (oImgCanvas) with a Bitmap (oBMP). The size is 256x256.  I want to resize the image to 140x180 and save it to file as a BMP. I can't resize oImgCanvas or oBMP (they don't seem to have a Resize method), so I am not sure how to go about this.  Any help