Если только при помощи
- Код: Выделить всё
{\pict ... <шестнадцатеричный код картинки>}
Рисунок берется из базы (здесь: RecordImageField)
Далее делается так:
- Код: Выделить всё
'Set array size in accordance with field size
ReDim PlotArray(RecordImageField.Size)
'Save image into the array
PlotArray() = RecordImageField
'Set the path to the temporary grafic file
FilePath = CurrentDirectory & "\" & FileName
FileHandle = FreeFile
Open FilePath For Binary Access Write As FileHandle
Put FileHandle, , PlotArray()
Close FileHandle
Как теперь можно получить шестнадцатеричный код картинки?