Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Trying to resize an image
Message
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01577727
Message ID:
01577733
Views:
60
If you can use a 24-bit BMP file format, I can get you an arbitrary scaling algorithm in a DLL.

Use as:
bmp24GetWidth(file)
bmp24GetHeight(file)
bmp24Scale(inFile, outFile, newWidth, newHeight)

Best regards,
Rick C. Hodgin



>I have downloaded GDI and the following sample program
>
>But the program just hangs - what am I going wrong?
>
>** How To: RESIZE with Thumbnail Technique
>**
>
>** Saves to a PNG file
>
>DO j:\gdi\System.App
>
>WITH _SCREEN.System.Drawing
>
>* Variables to store the new Image size
>LOCAL lnWidth, lnHeight
>STORE 60 TO lnWidth, lnHeight
>
>* Load the original Image
>LOCAL loSrcImage as xfcBitmap
>loSrcImage = .Bitmap.New(GETPICT())
>
>
>
>* Get the thumbnail with the desired size
>LOCAL loThumbnail as xfcImage
>loThumbnail = loSrcImage.GetThumbnailImage(198, 240)
>
>* Save the resized image as Png
>loResized.Save("c:\Resized1.png", .Imaging.ImageFormat.Png)
>
>ENDWITH
>RETURN
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform