ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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:
New in version 28
odOptionHidePane
The 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: wd280pic.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Video PicOpen


https://youtu.be/S606ShCw06o

https://windevdesenvolvimento.blogspot.com/2019/01/dicas-1975-publica-windev-imagen-11.html


// BTN_PROCURA_IMAGEN
// VAMOS PROCURAR UMA IMAGEN E COLOCAR NO EDT IMAGEN
// WE WILL LOOK FOR AN IMAGE AND PLACE IN EDIT IMAGE
// NOUS CHERCHERONS UNE IMAGE ET PLACERONS-NOUS ÉDITER UNE IMAGE
sFile is string
// Opens the image picker
sFile = fImageSelect("", "", "Selecione Uma Imagen", "ima" + TAB + "*.jpg")
EDT_IMAGEN=sFile
// VAMOS ABRIR A IMAGEN DENTRO DO NOSSO EDITOR
// LET'S OPEN THE IMAGE WITHIN OUR EDITOR
// OUVRONS L'IMAGE DANS NOTRE ÉDITEUR

IF PicOpen(IE_NoName1,sFile)=False THEN
Error(ErrorInfo())

END
amarildo
03 Jan. 2019