Git Product home page Git Product logo

swiftgdkpixbuf's Introduction

SwiftGdkPixbuf

A Swift wrapper around GdkPixbuf-2.x that is largely auto-generated from gobject-introspection, For up to date (auto-generated) reference documentation, see https://rhx.github.io/SwiftGdkPixbuf/

macOS 11 build macOS 10.15 build Ubuntu 20.04 build Ubuntu 18.04 build

What is new?

The target for this module has now been renamed to GdkPixBuf (with an upper-case letter 'B') to avoid a name clash with the underlying C type.

Version 15 of gir2swift provides a Package Manager Plugin. This requires Swift 5.6 or higher. (older versions can be used via the swift52 branch).

Prerequisites

Swift 5.6 or higher

To build, download Swift from https://swift.org/download/ -- if you are using macOS, make sure you have the command line tools installed as well). Test that your compiler works using swift --version, which should give you something like

$ swift --version
swift-driver version: 1.75.2 Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100)
Target: arm64-apple-macosx13.0

on macOS, or on Linux you should get something like:

$ swift --version
Swift version 5.8.1 (swift-5.8.1-RELEASE)
Target: x86_64-unknown-linux-gnu

Gdk-Pixbuf 2.36 and GLib 2.56 or higher

These Swift wrappers have been tested with gdk-pixbuf-2.36, 2.38, 2.40, and 2.42 as well as glib-2.56, 2.58, 2.60, 2.62, 2.64, 2.66, 2.68, 2.70, 2.72, 2.74, and 2.76, as well as gdk-pixbuf 2.36, 2.38, 2.40, and 2.42. They should work with higher versions, but YMMV. Also make sure you have gobject-introspection and its .gir files installed.

Linux

Ubuntu

On Ubuntu 18.04, 20.04, and 22.04 you can use the glib that comes with the distribution. Just install with the apt package manager:

sudo apt update
sudo apt install libgdk-pixbuf2.0-dev gir1.2-gdkpixbuf-2.0 libglib2.0-dev glib-networking gobject-introspection libgirepository1.0-dev libxml2-dev jq
Fedora

On Fedora 29, you can use the gtk that comes with the distribution. Just install with the dnf package manager:

sudo dnf install gdk-pixbuf2-devel glib2-devel gobject-introspection-devel libxml2-devel jq

macOS

On macOS, you can install gdk-pixbuf using HomeBrew (for setup instructions, see http://brew.sh). Once you have a running HomeBrew installation, you can use it to install a native version of gdk-pixbuf:

brew update
brew install gdk-pixbuf glib glib-networking gobject-introspection pkg-config jq

Usage

Normally, you don't build this package directly (but for testing you can - see 'Building' below). Instead you need to embed SwiftGdkPixbuf into your own project using the Swift Package Manager. After installing the prerequisites (see 'Prerequisites' below), add SwiftGdkPixbuf as a dependency to your Package.swift file, e.g.:

// swift-tools-version:5.6

import PackageDescription

let package = Package(name: "MyPackage",
    dependencies: [
        .package(url: "https://github.com/rhx/gir2swift.git",   branch: "main"),
        .package(url: "https://github.com/rhx/SwiftGdkPixbuf",  branch: "main"),
    ],
    targets: [
        .target(name: "MyPackage",
                dependencies: [
                    .product(name: "GdkPixBuf", package: "SwiftGdkPixbuf")
                ]
        )
    ]
)

Building

Normally, you don't build this package directly, but you embed it into your own project (see 'Usage' above). However, you can build and test this module separately to ensure that everything works. Make sure you have all the prerequisites installed (see above). After that, you can simply clone this repository and build the command line executable (be patient, this will download all the required dependencies and take a while to compile) using

git clone https://github.com/rhx/SwiftGdkPixbuf.git
cd SwiftGdkPixbuf
swift build
swift test

Documentation

You can generate documentation using the DocC plugin. To preview documentation matching your local installation, simply run

swift package --disable-sandbox preview-documentation

then navigate to the URL shown for the local preview server. Make sure you have JavaScript enabled in your browser.

Alternatively, you can create static documentation using jazzy. Make sure you have sourcekitten and jazzy installed, e.g. on macOS (x86_64):

brew install ruby sourcekitten
/usr/local/opt/ruby/bin/gem install jazzy
./generate-jazzy.sh

Troubleshooting

Here are some common errors you might encounter and how to fix them.

Missing .gir Files

If you get an error such as

Girs located at
Cannot open '/GLib-2.0.gir': No such file or directory

Make sure that you have the relevant gobject-introspection packages installed (as per the Pre-requisites section), including their .gir and .pc files.

Old Swift toolchain or Xcode

If, when you run swift build, you get a Segmentation fault (core dumped) or circular dependency error such as

warning: circular dependency detected while parsing pangocairo: harfbuzz -> freetype2 -> harfbuzz

this probably means that your Swift toolchain is too old, particularly on Linux. Make sure the latest toolchain is the one that is found when you run the Swift compiler (see above).

If you get an older version, make sure that the right version of the swift compiler is found first in your PATH. On macOS, use xcode-select to select and install the latest version, e.g.:

sudo xcode-select -s /Applications/Xcode.app
xcode-select --install

swiftgdkpixbuf's People

Contributors

mikolasstuchlik avatar rhx avatar

Watchers

 avatar  avatar  avatar

swiftgdkpixbuf's Issues

How can I get the GDK_TYPE_PIXBUF constant?

I want to create a GtkIconView using SwiftGtk.

For the Icon View I need a ListStore in which one of the columns is of the GdkPixbuf type.

This is a C example from the official Gtk documentation:

gtk_list_store_new (3, G_TYPE_INT, G_TYPE_STRING, GDK_TYPE_PIXBUF)

Another example in Python, from the Python Gtk 3 documenation:

liststore = Gtk.ListStore(Pixbuf, str)

I couldn't find an example of GtkIconView on the SwiftGtk examples, but I find the SwiftGtkListViewDemo which does something similar, creates a ListStore with two string columns and one boolean column using the .string and .boolean values, which are members of GType:

store = ListStore(.string, .string, .boolean)

If I try to do something like that using .pixbuf, swift compiler gives me an error message:

ls = ListStore(.pixbuf, .string)
error: type 'GType' (aka 'UInt') has no member 'pixbuf'
        ls = ListStore(.pixbuf, .string)
                       ~^~~~~~

I'm importing both Gdk and GdkPixbuf in my source code:

import Gtk
import Gdk
import GdkPixbuf

If I try to use the Pixbuf class as a type value, it gives me another error message:

ls = ListStore(Pixbuf, .string)
error: cannot convert value of type 'Pixbuf.Type' to expected argument type 'GType' (aka 'UInt')
        ls = ListStore(Pixbuf, .string)
                       ^

How can I create a ListStore in which one of the columns is of the Pixbuf type?

When debugging with LLDB, crash when loading PNG/JPEG using try Pixbuf.newFrom(file: "/user/username/Desktop/file.png")

I am certain it is probably an error in LLDB or whatever library loads PNGs/JPEGs, but on the off chance that it is not, I just wanted to report that when doing the following debugging with LLDB, a Stop reason: signal SIGSEGV: invalid address (fault address: 0x1) is raised. This error is not raised if the file does not exist. The call stack indicates it is happening in libjpeg or libpng

import SwiftGdkPixbuf
do {
    let i = try Pixbuf.newFrom(file: "/user/username/Desktop/file.png")
    //or
     let i2 = try Pixbuf(file: "/user/username/Desktop/file.png")
} catch {
    print(error)
}

This does not happen when running the built app.
Ubuntu 20.04.2 LTS
GNOME: 3.36.8

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.