2024-08-25 04:08:24 +00:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <QColor>
|
|
|
|
#include <QColorSpace>
|
|
|
|
#include <QColorTransform>
|
|
|
|
#include <QIODevice>
|
|
|
|
#include <QImage>
|
|
|
|
#include <QList>
|
|
|
|
#include <QMatrix>
|
|
|
|
#include <QPaintEngine>
|
|
|
|
#include <QPixelFormat>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QString>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <cstring>
|
2024-08-25 04:08:24 +00:00
|
|
|
#include <QTransform>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include "qimage.h"
|
2024-08-25 04:08:24 +00:00
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
#include "gen_qimage.h"
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage* QImage_new() {
|
|
|
|
return new QImage();
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
QImage* QImage_new2(QSize* size, uintptr_t format) {
|
|
|
|
return new QImage(*size, static_cast<QImage::Format>(format));
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage* QImage_new3(int width, int height, uintptr_t format) {
|
|
|
|
return new QImage(static_cast<int>(width), static_cast<int>(height), static_cast<QImage::Format>(format));
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage* QImage_new4(unsigned char* data, int width, int height, uintptr_t format) {
|
|
|
|
return new QImage(static_cast<uchar*>(data), static_cast<int>(width), static_cast<int>(height), static_cast<QImage::Format>(format));
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage* QImage_new5(const unsigned char* data, int width, int height, uintptr_t format) {
|
|
|
|
return new QImage(static_cast<const uchar*>(data), static_cast<int>(width), static_cast<int>(height), static_cast<QImage::Format>(format));
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage* QImage_new6(unsigned char* data, int width, int height, int bytesPerLine, uintptr_t format) {
|
|
|
|
return new QImage(static_cast<uchar*>(data), static_cast<int>(width), static_cast<int>(height), static_cast<int>(bytesPerLine), static_cast<QImage::Format>(format));
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage* QImage_new7(const unsigned char* data, int width, int height, int bytesPerLine, uintptr_t format) {
|
|
|
|
return new QImage(static_cast<const uchar*>(data), static_cast<int>(width), static_cast<int>(height), static_cast<int>(bytesPerLine), static_cast<QImage::Format>(format));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
QImage* QImage_new8(const char* fileName, size_t fileName_Strlen) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen);
|
|
|
|
return new QImage(fileName_QString);
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
QImage* QImage_new9(QImage* param1) {
|
2024-08-25 04:08:24 +00:00
|
|
|
return new QImage(*param1);
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
QImage* QImage_new10(const char* fileName, size_t fileName_Strlen, const char* format) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen);
|
|
|
|
return new QImage(fileName_QString, format);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_OperatorAssign(QImage* self, QImage* param1) {
|
|
|
|
self->operator=(*param1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_Swap(QImage* self, QImage* other) {
|
|
|
|
self->swap(*other);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_IsNull(const QImage* self) {
|
|
|
|
return self->isNull();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_DevType(const QImage* self) {
|
|
|
|
return self->devType();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_OperatorEqual(const QImage* self, QImage* param1) {
|
|
|
|
return self->operator==(*param1);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_OperatorNotEqual(const QImage* self, QImage* param1) {
|
|
|
|
return self->operator!=(*param1);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_Detach(QImage* self) {
|
|
|
|
self->detach();
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_IsDetached(const QImage* self) {
|
|
|
|
return self->isDetached();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Copy(const QImage* self) {
|
|
|
|
QImage ret = self->copy();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Copy2(const QImage* self, int x, int y, int w, int h) {
|
|
|
|
QImage ret = self->copy(static_cast<int>(x), static_cast<int>(y), static_cast<int>(w), static_cast<int>(h));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
uintptr_t QImage_Format(const QImage* self) {
|
|
|
|
QImage::Format ret = self->format();
|
2024-08-29 07:01:51 +00:00
|
|
|
return static_cast<uintptr_t>(ret);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ConvertToFormat(const QImage* self, uintptr_t f) {
|
|
|
|
QImage ret = self->convertToFormat(static_cast<QImage::Format>(f));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ConvertToFormat2(const QImage* self, uintptr_t f, unsigned int* colorTable, size_t colorTable_len) {
|
2024-08-29 07:01:51 +00:00
|
|
|
QVector<unsigned int> colorTable_QList;
|
|
|
|
colorTable_QList.reserve(colorTable_len);
|
|
|
|
for(size_t i = 0; i < colorTable_len; ++i) {
|
|
|
|
colorTable_QList.push_back(colorTable[i]);
|
|
|
|
}
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage ret = self->convertToFormat(static_cast<QImage::Format>(f), colorTable_QList);
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QImage_ReinterpretAsFormat(QImage* self, uintptr_t f) {
|
|
|
|
return self->reinterpretAsFormat(static_cast<QImage::Format>(f));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_ConvertTo(QImage* self, uintptr_t f) {
|
|
|
|
self->convertTo(static_cast<QImage::Format>(f));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_Width(const QImage* self) {
|
|
|
|
return self->width();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_Height(const QImage* self) {
|
|
|
|
return self->height();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QSize* QImage_Size(const QImage* self) {
|
|
|
|
QSize ret = self->size();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QSize*>(new QSize(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QRect* QImage_Rect(const QImage* self) {
|
|
|
|
QRect ret = self->rect();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QRect*>(new QRect(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_Depth(const QImage* self) {
|
|
|
|
return self->depth();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_ColorCount(const QImage* self) {
|
|
|
|
return self->colorCount();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_BitPlaneCount(const QImage* self) {
|
|
|
|
return self->bitPlaneCount();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
unsigned int QImage_Color(const QImage* self, int i) {
|
|
|
|
return self->color(static_cast<int>(i));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetColor(QImage* self, int i, unsigned int c) {
|
|
|
|
self->setColor(static_cast<int>(i), static_cast<QRgb>(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetColorCount(QImage* self, int colorCount) {
|
|
|
|
self->setColorCount(static_cast<int>(colorCount));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_AllGray(const QImage* self) {
|
|
|
|
return self->allGray();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_IsGrayscale(const QImage* self) {
|
|
|
|
return self->isGrayscale();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* QImage_Bits(QImage* self) {
|
|
|
|
return self->bits();
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
const unsigned char* QImage_Bits2(const QImage* self) {
|
|
|
|
return (const unsigned char*) self->bits();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
const unsigned char* QImage_ConstBits(const QImage* self) {
|
|
|
|
return (const unsigned char*) self->constBits();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_ByteCount(const QImage* self) {
|
|
|
|
return self->byteCount();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
size_t QImage_SizeInBytes(const QImage* self) {
|
|
|
|
return self->sizeInBytes();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* QImage_ScanLine(QImage* self, int param1) {
|
|
|
|
return self->scanLine(static_cast<int>(param1));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
const unsigned char* QImage_ScanLineWithInt(const QImage* self, int param1) {
|
|
|
|
return (const unsigned char*) self->scanLine(static_cast<int>(param1));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
const unsigned char* QImage_ConstScanLine(const QImage* self, int param1) {
|
|
|
|
return (const unsigned char*) self->constScanLine(static_cast<int>(param1));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_BytesPerLine(const QImage* self) {
|
|
|
|
return self->bytesPerLine();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_Valid(const QImage* self, int x, int y) {
|
|
|
|
return self->valid(static_cast<int>(x), static_cast<int>(y));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_ValidWithPt(const QImage* self, QPoint* pt) {
|
|
|
|
return self->valid(*pt);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_PixelIndex(const QImage* self, int x, int y) {
|
|
|
|
return self->pixelIndex(static_cast<int>(x), static_cast<int>(y));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_PixelIndexWithPt(const QImage* self, QPoint* pt) {
|
|
|
|
return self->pixelIndex(*pt);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
unsigned int QImage_Pixel(const QImage* self, int x, int y) {
|
|
|
|
return self->pixel(static_cast<int>(x), static_cast<int>(y));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
unsigned int QImage_PixelWithPt(const QImage* self, QPoint* pt) {
|
|
|
|
return self->pixel(*pt);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetPixel(QImage* self, int x, int y, unsigned int index_or_rgb) {
|
|
|
|
self->setPixel(static_cast<int>(x), static_cast<int>(y), static_cast<uint>(index_or_rgb));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetPixel2(QImage* self, QPoint* pt, unsigned int index_or_rgb) {
|
|
|
|
self->setPixel(*pt, static_cast<uint>(index_or_rgb));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QColor* QImage_PixelColor(const QImage* self, int x, int y) {
|
|
|
|
QColor ret = self->pixelColor(static_cast<int>(x), static_cast<int>(y));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QColor*>(new QColor(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QColor* QImage_PixelColorWithPt(const QImage* self, QPoint* pt) {
|
|
|
|
QColor ret = self->pixelColor(*pt);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QColor*>(new QColor(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetPixelColor(QImage* self, int x, int y, QColor* c) {
|
|
|
|
self->setPixelColor(static_cast<int>(x), static_cast<int>(y), *c);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetPixelColor2(QImage* self, QPoint* pt, QColor* c) {
|
|
|
|
self->setPixelColor(*pt, *c);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
void QImage_ColorTable(const QImage* self, unsigned int** _out, size_t* _out_len) {
|
|
|
|
QVector<unsigned int> ret = self->colorTable();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
|
|
unsigned int* __out = static_cast<unsigned int*>(malloc(sizeof(unsigned int) * ret.length()));
|
|
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
|
|
__out[i] = ret[i];
|
|
|
|
}
|
|
|
|
*_out = __out;
|
|
|
|
*_out_len = ret.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetColorTable(QImage* self, unsigned int* colors, size_t colors_len) {
|
2024-08-29 07:01:51 +00:00
|
|
|
QVector<unsigned int> colors_QList;
|
2024-08-25 04:08:24 +00:00
|
|
|
colors_QList.reserve(colors_len);
|
|
|
|
for(size_t i = 0; i < colors_len; ++i) {
|
|
|
|
colors_QList.push_back(colors[i]);
|
|
|
|
}
|
|
|
|
self->setColorTable(colors_QList);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
double QImage_DevicePixelRatio(const QImage* self) {
|
|
|
|
return self->devicePixelRatio();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetDevicePixelRatio(QImage* self, double scaleFactor) {
|
|
|
|
self->setDevicePixelRatio(static_cast<qreal>(scaleFactor));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_Fill(QImage* self, unsigned int pixel) {
|
|
|
|
self->fill(static_cast<uint>(pixel));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_FillWithColor(QImage* self, QColor* color) {
|
|
|
|
self->fill(*color);
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
void QImage_Fill2(QImage* self, uintptr_t color) {
|
|
|
|
self->fill(static_cast<Qt::GlobalColor>(color));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_HasAlphaChannel(const QImage* self) {
|
|
|
|
return self->hasAlphaChannel();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetAlphaChannel(QImage* self, QImage* alphaChannel) {
|
|
|
|
self->setAlphaChannel(*alphaChannel);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_AlphaChannel(const QImage* self) {
|
|
|
|
QImage ret = self->alphaChannel();
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_CreateAlphaMask(const QImage* self) {
|
|
|
|
QImage ret = self->createAlphaMask();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_CreateHeuristicMask(const QImage* self) {
|
|
|
|
QImage ret = self->createHeuristicMask();
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_CreateMaskFromColor(const QImage* self, unsigned int color) {
|
|
|
|
QImage ret = self->createMaskFromColor(static_cast<QRgb>(color));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Scaled(const QImage* self, int w, int h) {
|
|
|
|
QImage ret = self->scaled(static_cast<int>(w), static_cast<int>(h));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ScaledWithQSize(const QImage* self, QSize* s) {
|
|
|
|
QImage ret = self->scaled(*s);
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ScaledToWidth(const QImage* self, int w) {
|
|
|
|
QImage ret = self->scaledToWidth(static_cast<int>(w));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ScaledToHeight(const QImage* self, int h) {
|
|
|
|
QImage ret = self->scaledToHeight(static_cast<int>(h));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Transformed(const QImage* self, QMatrix* matrix) {
|
|
|
|
QImage ret = self->transformed(*matrix);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
QMatrix* QImage_TrueMatrix(QMatrix* param1, int w, int h) {
|
|
|
|
QMatrix ret = QImage::trueMatrix(*param1, static_cast<int>(w), static_cast<int>(h));
|
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QMatrix*>(new QMatrix(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_TransformedWithMatrix(const QImage* self, QTransform* matrix) {
|
|
|
|
QImage ret = self->transformed(*matrix);
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
QTransform* QImage_TrueMatrix2(QTransform* param1, int w, int h) {
|
|
|
|
QTransform ret = QImage::trueMatrix(*param1, static_cast<int>(w), static_cast<int>(h));
|
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QTransform*>(new QTransform(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Mirrored(const QImage* self) {
|
|
|
|
QImage ret = self->mirrored();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_RgbSwapped(const QImage* self) {
|
|
|
|
QImage ret = self->rgbSwapped();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
void QImage_InvertPixels(QImage* self) {
|
|
|
|
self->invertPixels();
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QColorSpace* QImage_ColorSpace(const QImage* self) {
|
|
|
|
QColorSpace ret = self->colorSpace();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QColorSpace*>(new QColorSpace(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ConvertedToColorSpace(const QImage* self, QColorSpace* param1) {
|
|
|
|
QImage ret = self->convertedToColorSpace(*param1);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_ConvertToColorSpace(QImage* self, QColorSpace* param1) {
|
|
|
|
self->convertToColorSpace(*param1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetColorSpace(QImage* self, QColorSpace* colorSpace) {
|
|
|
|
self->setColorSpace(*colorSpace);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_ApplyColorTransform(QImage* self, QColorTransform* transform) {
|
|
|
|
self->applyColorTransform(*transform);
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
bool QImage_Load(QImage* self, QIODevice* device, const char* format) {
|
2024-08-25 04:08:24 +00:00
|
|
|
return self->load(device, format);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QImage_LoadWithFileName(QImage* self, const char* fileName, size_t fileName_Strlen) {
|
|
|
|
QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen);
|
|
|
|
return self->load(fileName_QString);
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
bool QImage_LoadFromData(QImage* self, const unsigned char* buf, int lenVal) {
|
|
|
|
return self->loadFromData(static_cast<const uchar*>(buf), static_cast<int>(lenVal));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QImage_LoadFromDataWithData(QImage* self, QByteArray* data) {
|
|
|
|
return self->loadFromData(*data);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_Save(const QImage* self, const char* fileName, size_t fileName_Strlen) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen);
|
2024-09-11 05:41:09 +00:00
|
|
|
return self->save(fileName_QString);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_SaveWithDevice(const QImage* self, QIODevice* device) {
|
|
|
|
return self->save(device);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
QImage* QImage_FromData(const unsigned char* data, int size) {
|
|
|
|
QImage ret = QImage::fromData(static_cast<const uchar*>(data), static_cast<int>(size));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage* QImage_FromDataWithData(QByteArray* data) {
|
|
|
|
QImage ret = QImage::fromData(*data);
|
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
long long QImage_CacheKey(const QImage* self) {
|
|
|
|
return self->cacheKey();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QPaintEngine* QImage_PaintEngine(const QImage* self) {
|
|
|
|
return self->paintEngine();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_DotsPerMeterX(const QImage* self) {
|
|
|
|
return self->dotsPerMeterX();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QImage_DotsPerMeterY(const QImage* self) {
|
|
|
|
return self->dotsPerMeterY();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetDotsPerMeterX(QImage* self, int dotsPerMeterX) {
|
|
|
|
self->setDotsPerMeterX(static_cast<int>(dotsPerMeterX));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetDotsPerMeterY(QImage* self, int dotsPerMeterY) {
|
|
|
|
self->setDotsPerMeterY(static_cast<int>(dotsPerMeterY));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QPoint* QImage_Offset(const QImage* self) {
|
|
|
|
QPoint ret = self->offset();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QPoint*>(new QPoint(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetOffset(QImage* self, QPoint* offset) {
|
|
|
|
self->setOffset(*offset);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
void QImage_TextKeys(const QImage* self, char*** _out, int** _out_Lengths, size_t* _out_len) {
|
|
|
|
QStringList ret = self->textKeys();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QStringList from C++ memory to manually-managed C memory
|
|
|
|
char** __out = static_cast<char**>(malloc(sizeof(char*) * ret.length()));
|
|
|
|
int* __out_Lengths = static_cast<int*>(malloc(sizeof(int) * ret.length()));
|
|
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
|
|
QByteArray b = ret[i].toUtf8();
|
|
|
|
__out[i] = static_cast<char*>(malloc(b.length()));
|
|
|
|
memcpy(__out[i], b.data(), b.length());
|
|
|
|
__out_Lengths[i] = b.length();
|
|
|
|
}
|
|
|
|
*_out = __out;
|
|
|
|
*_out_Lengths = __out_Lengths;
|
|
|
|
*_out_len = ret.length();
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
void QImage_Text(const QImage* self, char** _out, int* _out_Strlen) {
|
|
|
|
QString ret = self->text();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
|
|
QByteArray b = ret.toUtf8();
|
|
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
|
|
memcpy(*_out, b.data(), b.length());
|
|
|
|
*_out_Strlen = b.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_SetText(QImage* self, const char* key, size_t key_Strlen, const char* value, size_t value_Strlen) {
|
|
|
|
QString key_QString = QString::fromUtf8(key, key_Strlen);
|
|
|
|
QString value_QString = QString::fromUtf8(value, value_Strlen);
|
|
|
|
self->setText(key_QString, value_QString);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QPixelFormat* QImage_PixelFormat(const QImage* self) {
|
|
|
|
QPixelFormat ret = self->pixelFormat();
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QPixelFormat*>(new QPixelFormat(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
QPixelFormat* QImage_ToPixelFormat(uintptr_t format) {
|
|
|
|
QPixelFormat ret = QImage::toPixelFormat(static_cast<QImage::Format>(format));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QPixelFormat*>(new QPixelFormat(ret));
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
uintptr_t QImage_ToImageFormat(QPixelFormat* format) {
|
|
|
|
QImage::Format ret = QImage::toImageFormat(*format);
|
|
|
|
return static_cast<uintptr_t>(ret);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Copy1(const QImage* self, QRect* rect) {
|
|
|
|
QImage ret = self->copy(*rect);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ConvertToFormat22(const QImage* self, uintptr_t f, int flags) {
|
|
|
|
QImage ret = self->convertToFormat(static_cast<QImage::Format>(f), static_cast<Qt::ImageConversionFlags>(flags));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ConvertToFormat3(const QImage* self, uintptr_t f, unsigned int* colorTable, size_t colorTable_len, int flags) {
|
2024-08-29 07:01:51 +00:00
|
|
|
QVector<unsigned int> colorTable_QList;
|
|
|
|
colorTable_QList.reserve(colorTable_len);
|
|
|
|
for(size_t i = 0; i < colorTable_len; ++i) {
|
|
|
|
colorTable_QList.push_back(colorTable[i]);
|
|
|
|
}
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage ret = self->convertToFormat(static_cast<QImage::Format>(f), colorTable_QList, static_cast<Qt::ImageConversionFlags>(flags));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_ConvertTo2(QImage* self, uintptr_t f, int flags) {
|
|
|
|
self->convertTo(static_cast<QImage::Format>(f), static_cast<Qt::ImageConversionFlags>(flags));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_CreateAlphaMask1(const QImage* self, int flags) {
|
|
|
|
QImage ret = self->createAlphaMask(static_cast<Qt::ImageConversionFlags>(flags));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_CreateHeuristicMask1(const QImage* self, bool clipTight) {
|
|
|
|
QImage ret = self->createHeuristicMask(clipTight);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_CreateMaskFromColor2(const QImage* self, unsigned int color, uintptr_t mode) {
|
|
|
|
QImage ret = self->createMaskFromColor(static_cast<QRgb>(color), static_cast<Qt::MaskMode>(mode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Scaled3(const QImage* self, int w, int h, uintptr_t aspectMode) {
|
|
|
|
QImage ret = self->scaled(static_cast<int>(w), static_cast<int>(h), static_cast<Qt::AspectRatioMode>(aspectMode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Scaled4(const QImage* self, int w, int h, uintptr_t aspectMode, uintptr_t mode) {
|
|
|
|
QImage ret = self->scaled(static_cast<int>(w), static_cast<int>(h), static_cast<Qt::AspectRatioMode>(aspectMode), static_cast<Qt::TransformationMode>(mode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Scaled2(const QImage* self, QSize* s, uintptr_t aspectMode) {
|
|
|
|
QImage ret = self->scaled(*s, static_cast<Qt::AspectRatioMode>(aspectMode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Scaled32(const QImage* self, QSize* s, uintptr_t aspectMode, uintptr_t mode) {
|
|
|
|
QImage ret = self->scaled(*s, static_cast<Qt::AspectRatioMode>(aspectMode), static_cast<Qt::TransformationMode>(mode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ScaledToWidth2(const QImage* self, int w, uintptr_t mode) {
|
|
|
|
QImage ret = self->scaledToWidth(static_cast<int>(w), static_cast<Qt::TransformationMode>(mode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_ScaledToHeight2(const QImage* self, int h, uintptr_t mode) {
|
|
|
|
QImage ret = self->scaledToHeight(static_cast<int>(h), static_cast<Qt::TransformationMode>(mode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Transformed2(const QImage* self, QMatrix* matrix, uintptr_t mode) {
|
|
|
|
QImage ret = self->transformed(*matrix, static_cast<Qt::TransformationMode>(mode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Transformed22(const QImage* self, QTransform* matrix, uintptr_t mode) {
|
|
|
|
QImage ret = self->transformed(*matrix, static_cast<Qt::TransformationMode>(mode));
|
2024-08-29 07:01:51 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Mirrored1(const QImage* self, bool horizontally) {
|
|
|
|
QImage ret = self->mirrored(horizontally);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QImage* QImage_Mirrored2(const QImage* self, bool horizontally, bool vertically) {
|
|
|
|
QImage ret = self->mirrored(horizontally, vertically);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
void QImage_InvertPixels1(QImage* self, uintptr_t param1) {
|
|
|
|
self->invertPixels(static_cast<QImage::InvertMode>(param1));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QImage_Load2(QImage* self, const char* fileName, size_t fileName_Strlen, const char* format) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen);
|
|
|
|
return self->load(fileName_QString, format);
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
bool QImage_LoadFromData3(QImage* self, const unsigned char* buf, int lenVal, const char* format) {
|
|
|
|
return self->loadFromData(static_cast<const uchar*>(buf), static_cast<int>(lenVal), format);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
bool QImage_LoadFromData2(QImage* self, QByteArray* data, const char* aformat) {
|
2024-08-25 04:08:24 +00:00
|
|
|
return self->loadFromData(*data, aformat);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_Save2(const QImage* self, const char* fileName, size_t fileName_Strlen, const char* format) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen);
|
2024-09-11 05:41:09 +00:00
|
|
|
return self->save(fileName_QString, format);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_Save3(const QImage* self, const char* fileName, size_t fileName_Strlen, const char* format, int quality) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QString fileName_QString = QString::fromUtf8(fileName, fileName_Strlen);
|
2024-09-11 05:41:09 +00:00
|
|
|
return self->save(fileName_QString, format, static_cast<int>(quality));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_Save22(const QImage* self, QIODevice* device, const char* format) {
|
|
|
|
return self->save(device, format);
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QImage_Save32(const QImage* self, QIODevice* device, const char* format, int quality) {
|
|
|
|
return self->save(device, format, static_cast<int>(quality));
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
QImage* QImage_FromData3(const unsigned char* data, int size, const char* format) {
|
|
|
|
QImage ret = QImage::fromData(static_cast<const uchar*>(data), static_cast<int>(size), format);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-08-29 07:01:51 +00:00
|
|
|
QImage* QImage_FromData2(QByteArray* data, const char* format) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QImage ret = QImage::fromData(*data, format);
|
|
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
|
|
return static_cast<QImage*>(new QImage(ret));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
void QImage_Text1(const QImage* self, const char* key, size_t key_Strlen, char** _out, int* _out_Strlen) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QString key_QString = QString::fromUtf8(key, key_Strlen);
|
2024-09-11 05:41:09 +00:00
|
|
|
QString ret = self->text(key_QString);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
|
|
QByteArray b = ret.toUtf8();
|
|
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
|
|
memcpy(*_out, b.data(), b.length());
|
|
|
|
*_out_Strlen = b.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QImage_Delete(QImage* self) {
|
|
|
|
delete self;
|
|
|
|
}
|
|
|
|
|