FGX.Canvas.TfgBitmap: различия между версиями

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 8: Строка 8:
  
 
Представление платформозависимого битмапа в памяти.
 
Представление платформозависимого битмапа в памяти.
 +
 +
== Конструкторы ==
 +
 +
{| class="wikitable sortable"
 +
|-
 +
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create()</code>
 +
 +
|-
 +
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create(const AWidth: [[Integer]]; const AHeight: [[Integer]])</code>
 +
 +
|-
 +
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>CreateFromStream(const AStream: [[TStream]])</code>
 +
 +
|-
 +
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>CreateFromFile(const AFileName: [[string]])</code>
 +
 +
|-
 +
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>CreateFromBitmap(const ABitmap: [[FGX.Canvas.TfgBitmap|TfgBitmap]])</code>
 +
 +
|}

Версия 04:37, 10 июня 2019

Delphi

TfgBitmap = class (TPersistent)

Описание

Представление платформозависимого битмапа в памяти.

Конструкторы

constructor
Create()
constructor
Create(const AWidth: Integer; const AHeight: Integer)
constructor
CreateFromStream(const AStream: TStream)
constructor
CreateFromFile(const AFileName: string)
constructor
CreateFromBitmap(const ABitmap: TfgBitmap)