Questions tagged [gdkpixbuf]
93 questions
0
votes
1 answer
Save an image from JPEG to PNG using libCurl and GdkPixBuff
I'm trying to build up an algorithm that downloads a JPEG image from an URL and saves it as a PNG into the disk.
To achieve this I've used libCurl, for download, and GdkPixbuff library for the other stuffs (for a project limitation I'm sticked to…

Archedius
- 2,887
- 3
- 20
- 24
0
votes
1 answer
PyGTK gtk.gdk.Pixbuf.copy_area erroneously copying alpha bits
Here is a picture illustrating the issue I am having:
This picture was created with the following:
cube.copy_area(0, 0, cube.get_width(), cube.get_height(), self.canvas, o2i[0], o2i[1])
where cube and canvas are of the type gtk.gdk.Pixbuf. o2i is…
user1276209
0
votes
1 answer
How to repair "error: gdk-pixbuf/gdk-pixdata.h: No such file or directory?"
I need to rotate a Pixbuf. The vala code contains
using Gst, GLib, Posix, Sqlite, Gdk;
public class RotateSaveImage
{
public void RotateSaveImage(string input, string output)
{
var img = new Pixbuf.from_file(input);
var…

jacknad
- 13,483
- 40
- 124
- 194