ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Video functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
VideoGenerateThumbnail (Function)
In french: VidéoGénèreMiniature
Generates a thumbnail of the specified photo or video. This thumbnail is generated in JPEG format.
Remarks:
  • If photos must be used in Android applications, we advise you to work with thumbnails and not with the initial photos taken by the device.
  • This function is equivalent to CameraGenerateThumbnail.
sPhoto is string = VideoStartApp(viPictureCapture)
IF NOT ErrorOccurred THEN
bThumbnail is boolean
bThumbnail = VideoGenerateThumbnail(sPhoto, ...
fExtractPath(sPhoto, fDirectory + fFile) + "_thumb.jpg")
END
Syntax

Generating an auto-sized thumbnail of a photo or video Hide the details

<Result> = VideoGenerateThumbnail(<Source> , <Destination>)
<Result>: Boolean
  • True if the generation was performed. The thumbnail height will be 96 pixels and its width will be calculated according to the width/height ratio of the source image or video.
  • False if an error occurred. In this case, the ErrorOccurred variable is set to False. To get more details on the error, use ErrorInfo.
<Source>: Character string
Full path of photo or video for which a thumbnail will be generated. For a video, the file must be in a shared location of the device (on the sdcard for example).
<Destination>: Character string
Full path of the file where the thumbnail will be saved.

Generating the thumbnail of a photo with a given size Hide the details

<Result> = VideoGenerateThumbnail(<Source> , <Destination> , <Width> , <Height>)
<Result>: Boolean
  • True if the generation was performed,
  • False if an error occurred. In this case, the ErrorOccurred variable is set to False. To get more details on the error, use ErrorInfo.
<Source>: Character string
Full path of photo or video for which a thumbnail will be generated. For a video, the file must be in a shared location of the device (on the sdcard for example).
<Destination>: Character string
Full path of the file where the thumbnail will be saved.
<Width>: Integer
Width (in pixels) of thumbnail to generate.
<Height>: Integer
Height (in pixels) of thumbnail to generate.
Related Examples:
WM Expense Account Cross-platform examples (WINDEV Mobile): WM Expense Account
[ + ] This example allows you to manage your fees.

Let's see the main features of this application:
- The input of invoices
- Management of foreign currencies
- Inclusion of photo document for the invoices
- Ability to email the expense account
- Ability to track the expense accounts
- ...
Component: wdandroid.jar
Minimum version required
  • Version 17
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help