- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我已经通读了文档和示例,但在我的实现过程中,我无法做到正确。
问题:使用以下代码,写入的.png 将透明区域转换为纯白色。我试图将生成的 .png 覆盖在另一个带有颜色的图像之上,但由于不透明,底层图像不会影响输出。
我错过了什么?我尝试了各种选项,但无法正确输出。
C++代码如下:
function() {
int x, y, w, h;
double xt, yt, wt, ht;
// get image position and size
state->transform(0.0, 0.0, xt, yt);
state->transformDelta(1.0, 1.0, wt, ht);
if (wt > 0) {
x = (int) ceil(xt);
w = (int) ceil(wt);
} else {
x = (int) ceil(xt + wt);
w = (int) ceil(-wt);
}
if (ht > 0) {
y = (int) ceil(yt);
h = (int) ceil(ht);
} else {
y = (int) ceil(yt + ht);
h = (int) ceil(-ht);
}
GString* filePath = GString::format("{0:s}img-{1:d}_{2:d}.", this->outputDir.c_str(),
this->pageNum, this->imageNum);
std::ofstream imgFile;
GBool invert = isColorMapInverted(colorMap);
if (str->getKind() == strDCT && !invert) {
// dump JPEG file
filePath->append("jpg");
// open the image file
imgFile.open(filePath->getCString(), std::ios::out | std::ios::trunc | std::ios::binary);
//LOG4CPLUS_INFO(s_logger, "Writing image " << filePath->getCString());
// initialize stream
str = ((DCTStream*) str)->getRawStream();
str->reset();
// copy the stream
int c;
while ((c = str->getChar()) != EOF) {
imgFile << (Guchar) c;
}
} else {
FILE* f1;
filePath->append("png");
// open the image file
if (!(f1 = fopen(filePath->getCString(), "wb"))) {
throw std::runtime_error("Couldn't open file for writing PNG");
}
//LOG4CPLUS_INFO(s_logger, "Writing image " << filePath->getCString());
// Initialize the PNG stuff
png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!png_ptr) {
throw std::runtime_error("png_create_write_struct failed");
}
png_infop info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
throw std::runtime_error("png_create_info_struct failed");
}
if (setjmp(png_jmpbuf(png_ptr))) {
throw std::runtime_error("Error during init_io");
}
// Write the PNG header
png_init_io(png_ptr, f1);
if (setjmp(png_jmpbuf(png_ptr))) {
throw std::runtime_error("Error while writing png header");
}
// Set up the type of PNG image and the compression level
png_set_compression_level(png_ptr, Z_BEST_COMPRESSION);
// png_set_expand(png_ptr);
// /* Set the background color to draw transparent and alpha
// images over */
// png_color_16 my_background;
// png_set_background(png_ptr, &my_background,PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
png_set_invert_alpha(png_ptr);
const png_byte bit_depth = colorMap ? 8 : 1;
const png_byte color_type = colorMap ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_GRAY;
png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth, color_type, PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
// Write the image info bytes
png_write_info(png_ptr, info_ptr);
writeStreamToPng(png_ptr, str, width, height, colorMap, maskColors);
// Write PNG end chunk
if (setjmp(png_jmpbuf(png_ptr))) {
throw std::runtime_error("Error while writing png end chunk");
}
png_write_end(png_ptr, NULL);
fclose(f1);
}
++this->imageNum;
str->close();
imgFile.close();
const int dirLength = this->outputDir.length();
GString* const fileName = new GString(filePath, dirLength, filePath->getLength() - dirLength);
const SimpleBoundingRectangle simpleBound(x, y, x + w, y + h);
const BoundingPolygon* const bounds = new BoundingPolygon(
getEffectiveBoundingPolygon(simpleBound));
SVGImage* const img = new SVGImage(x, y, w, h, fileName, this->currentClipPathIndex, bounds);
this->addNode(img);
// Do no delete fileName - SVGImage's destructor will do that
delete filePath;
}
static void writeStreamToPng(png_structp const png_ptr, Stream* const stream, const int width,
const int height, GfxImageColorMap* const colorMap, int* maskColors) {
const int numBits = colorMap ? colorMap->getBits() : 1;
const int numPixelComponents = colorMap ? colorMap->getNumPixelComps() : 1;
// If color map is specified, assume RGB, i.e. 3 bytes/pixel
const int rowSize = colorMap ? (3 * width) : ((width + 7) / 8);
png_byte* row = (png_byte*) malloc(rowSize);
png_bytep* const row_pointer = &row;
// Initialize the image stream
ImageStream* const imgStream = new ImageStream(stream, width, numPixelComponents, numBits);
imgStream->reset();
// For each line...
for (int y = 0; y < height; y++) {
// Convert stream data of each row to a PNG row
if (colorMap) {
GfxRGB rgb;
Guchar* p = imgStream->getLine();
for (int x = 0; x < width; x++) {
if (p) {
colorMap->getRGB(p, &rgb);
p += numPixelComponents;
} else {
/* No more lines in the stream - assume 0 as done in
ImageOutputDev's drawImage */
rgb.r = rgb.g = rgb.b = 0;
}
// Write the RGB pixels into the row
row[3 * x] = colToByte(rgb.r);
row[3 * x + 1] = colToByte(rgb.g);
row[3 * x + 2] = colToByte(rgb.b);
}
} else {
for (int i = 0; i < rowSize; ++i) {
row[i] = stream->getChar() ^ *maskColors;
}
}
if (setjmp(png_jmpbuf(png_ptr))) {
delete row;
delete imgStream;
throw std::runtime_error("Error in writing png rows");
}
// Write the row to the file
png_write_rows(png_ptr, row_pointer, 1);
}
delete row;
delete imgStream;
}
最佳答案
color_type = colorMap ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_GRAY
那些是不透明的 PNG 颜色类型。
尝试 PNG_COLOR_TYPE_RGBA :PNG_COLOR_TYPE_GRAY_ALPHA
关于C++ libPng 写一个透明背景的PNG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19945372/
我想禁用我的 UIButton,所以我调用: button.enabled = FALSE; 然而,这会使按钮变得透明,我可以看到它下面的元素。我不介意它改变颜色,我只是不希望它是透明的。 我尝试在
一个常规的 NSButton 如果被禁用,它似乎是透明的。 图像显示了一个样式为“push”的按钮 但是,我想禁用没有透明度的按钮。 我试图以编程方式将 alphaValue 设置为 1.0 但似乎
我正在尝试将Memoji从iPhone/Mac转换为具有透明背景的一系列png,以便我可以创建一个 Sprite 表。当按下空格键时,我可以清楚地看到它具有透明背景,但是在运行 ffmpeg -i s
我想创建一个具有部分透明背景的 View (舞台、窗口)。我有一张包含 Alpha channel 的图像 我在JavaFx中使用了这种场景,我必须将场景填充设置为空,并将根节点背景颜色设置为透明。我
我想创建一个具有部分透明背景的 View (舞台、窗口)。我有一张包含 Alpha channel 的图像 我在JavaFx中使用了这种场景,我必须将场景填充设置为空,并将根节点背景颜色设置为透明。我
我想将 JDesktopPane 设置为透明,并允许我单击下面的内容(例如桌面图标等)。内部框架应保持不透明,并且能够像当前一样在屏幕周围重新定位。有什么想法吗? package test1;
我知道我不是第一个提出此类问题的人,但我认为我的问题有点不同。 我在 MS Paint 上绘制了一个 png 图像,它是一个播放器,当我使用图形对象绘制图像时,我希望图像的背景是透明的。我尝试了一些带
我在 Mac 的 swift 项目中想使用单选按钮,但与我的背景颜色相同。如何将背景设置为不透明或更改背景颜色? 最佳答案 我找到了解决此问题的方法。将单选按钮的文本设置为“”,将 rb 添加到水平堆
我无法将我的相对布局设置为透明。我尝试了很多不同的方法,从类中自定义 View ,添加 android:background="@android:color/transparent"等。它们要么像下图
在 Storyboard中,我创建了一个 ![UINavigationController] 及其 Root View Controller UIViewcontroller。在工具栏中,我有一个分段
我必须让我的导航栏透明,我试过这段代码: self.navigationController?.navigationBar.setBackgroundImage(UIImage(), for: UIB
我注意到,如果我将 View 背景颜色设置为透明,则在 segue 过渡结束后背景颜色会变成黑色(我猜这是默认的“视口(viewport)”颜色)。 我可以改变吗?当然,我可以将颜色从透明更改为紫色,
嘿,有没有可能让滚动条“隐藏”,我不想使用 overflow-y: hidden就像背景:透明或类似的东西 最佳答案 Here您会找到有关如何仅使用 CSS 隐藏滚动条的说明。 在第二个example
默认情况下,背景显示为白色。是否可以通过任何方式将其背景颜色更改为透明..? (function() { var cx = '005519348941191855053:d0uziw7c
我正在尝试添加一个在 div 的左右边缘具有透明度/淡出的嵌入框阴影。我设法添加了一个普通的嵌入框阴影,但我不知道如何为边缘添加透明度。我该怎么做? 这是我正在努力实现的一个例子。 .contai
如何删除 周围的边框并使其背景透明? 最佳答案 试试这个: border: none; border-color: transparent; 关于html - 透明、无边框的文本输入,我们在Stac
是否可以使 JButton 透明(包括边框)而不是文本?我扩展了 swing 的 JButton 并覆盖了它: @Override public void paint(Graphics g) {
众所周知,要使QWidget/QOpenGLWidget半透明/透明,只需: widget->setAttribute(Qt::WA_TranslucentBackground) 但是,由于 QWin
我想知道如何在 Ubuntu 中为所有应用程序制作透明 Gnome 终端,我知道我们可以为桌面制作透明终端,而不是为所有应用程序制作透明终端。我用谷歌搜索了很多,但找不到任何解决方案。谁能告诉我该怎么
我想让 SWT Canvas 的背景透明,以便可以看到它后面的其他小部件。 我尝试将 alpha 设置为 0 并用矩形填充 Canvas ,并且还使用选项 SWT.NO_BACKGROUND 无济于事
我是一名优秀的程序员,十分优秀!