ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Drawing 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
Opens an image in an Image Editor control.
Example
sFile is string
 
// Opens the image picker
sFile = fImageSelect("", "", "Select an image...")
IF sFile = "" THEN
RETURN
END
 
// Open the image in the Image Editor control
IF PicOpen(IE_MyEditor, sFile) = False THEN
Error(ErrorInfo())
END
Syntax
<Result> = PicOpen(<Image Editor control> , <Image> [, <Opening mode>])
<Result>: Boolean
  • True if the image was opened,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Image Editor control>: Control name
Name of the Image Editor control used to display the image.
<Image>: Character string or Image variable
Image to display in the Image Editor control. This parameter can be:
  • a variable of type Image.
  • the path of image file.
<Opening mode>: Optional Integer constant
Image opening mode:
odOptionHidePaneThe image is displayed in the image editor in read/write mode and the right pane (that displays the color characteristics) is not displayed by default.
odOptionNone
(default value)
The image is displayed in the Image Editor control in read/write mode.
odOptionReadOnlyThe image is displayed in read-only mode in the image editor.
In this mode, only the display options and the OCR will be accessible. The user will also be able to print and save the document using the "Save as" option.
Remarks
This function is equivalent to the following syntaxes:
<Image Editor control> = <Image path>
<Image Editor control> = <Image variable>
Business / UI classification: UI Code
Component: wd290pic.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/29/2023

Send a report | Local help