File: hello-world.lua

package info (click to toggle)
lua-vips 1.1.12-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 772 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 221 bytes parent folder | download
1
2
3
4
5
6
7
8
9
local vips = require "vips"

-- uncomment for very chatty output
-- vips.log.enable(true)

local image1 = vips.Image.text("Hello <i>World!</i>", { dpi = 300 })
print("writing to x.png ...")
image1:write_to_file("x.png")