2021-02-25 14:23:07 +00:00
|
|
|
ffPng pixie.html#ffPng FileFormat.ffPng
|
|
|
|
ffBmp pixie.html#ffBmp FileFormat.ffBmp
|
|
|
|
ffJpg pixie.html#ffJpg FileFormat.ffJpg
|
2021-03-12 03:39:21 +00:00
|
|
|
ffGif pixie.html#ffGif FileFormat.ffGif
|
2021-02-25 14:23:07 +00:00
|
|
|
FileFormat pixie.html#FileFormat pixie: FileFormat
|
2021-03-12 03:39:21 +00:00
|
|
|
autoStraightAlpha pixie.html#autoStraightAlpha.c,ColorRGBX pixie: autoStraightAlpha(c: ColorRGBX): ColorRGBA
|
|
|
|
autoPremultipliedAlpha pixie.html#autoPremultipliedAlpha.c,ColorRGBA pixie: autoPremultipliedAlpha(c: ColorRGBA): ColorRGBX
|
2021-02-25 14:23:07 +00:00
|
|
|
decodeImage pixie.html#decodeImage pixie: decodeImage(data: string | seq[uint8]): Image
|
|
|
|
readImage pixie.html#readImage,string pixie: readImage(filePath: string): Image
|
|
|
|
encodeImage pixie.html#encodeImage,Image,FileFormat pixie: encodeImage(image: Image; fileFormat: FileFormat): string
|
|
|
|
writeFile pixie.html#writeFile,Image,string,FileFormat pixie: writeFile(image: Image; filePath: string; fileFormat: FileFormat)
|
|
|
|
writeFile pixie.html#writeFile,Image,string pixie: writeFile(image: Image; filePath: string)
|
2021-03-12 03:39:21 +00:00
|
|
|
fillRect pixie.html#fillRect,Image,Rect,SomeColor pixie: fillRect(image: Image; rect: Rect; color: SomeColor)
|
2021-02-25 14:23:07 +00:00
|
|
|
fillRect pixie.html#fillRect,Mask,Rect pixie: fillRect(mask: Mask; rect: Rect)
|
2021-03-12 03:39:21 +00:00
|
|
|
strokeRect pixie.html#strokeRect,Image,Rect,SomeColor,float pixie: strokeRect(image: Image; rect: Rect; color: SomeColor; strokeWidth = 1.0)
|
2021-02-25 14:23:07 +00:00
|
|
|
strokeRect pixie.html#strokeRect,Mask,Rect,float pixie: strokeRect(mask: Mask; rect: Rect; strokeWidth = 1.0)
|
2021-03-12 03:39:21 +00:00
|
|
|
fillRoundedRect pixie.html#fillRoundedRect,Image,Rect,float32,float32,float32,float32,SomeColor pixie: fillRoundedRect(image: Image; rect: Rect; nw, ne, se, sw: float32;\n color: SomeColor)
|
|
|
|
fillRoundedRect pixie.html#fillRoundedRect,Image,Rect,float32,SomeColor pixie: fillRoundedRect(image: Image; rect: Rect; radius: float32; color: SomeColor)
|
2021-02-25 14:23:07 +00:00
|
|
|
fillRoundedRect pixie.html#fillRoundedRect,Mask,Rect,float32,float32,float32,float32 pixie: fillRoundedRect(mask: Mask; rect: Rect; nw, ne, se, sw: float32)
|
|
|
|
fillRoundedRect pixie.html#fillRoundedRect,Mask,Rect,float32 pixie: fillRoundedRect(mask: Mask; rect: Rect; radius: float32)
|
2021-03-12 03:39:21 +00:00
|
|
|
strokeRoundedRect pixie.html#strokeRoundedRect,Image,Rect,float32,float32,float32,float32,SomeColor,float pixie: strokeRoundedRect(image: Image; rect: Rect; nw, ne, se, sw: float32;\n color: SomeColor; strokeWidth = 1.0)
|
|
|
|
strokeRoundedRect pixie.html#strokeRoundedRect,Image,Rect,float32,SomeColor,float pixie: strokeRoundedRect(image: Image; rect: Rect; radius: float32; color: SomeColor;\n strokeWidth = 1.0)
|
2021-02-25 14:23:07 +00:00
|
|
|
strokeRoundedRect pixie.html#strokeRoundedRect,Mask,Rect,float32,float32,float32,float32,float pixie: strokeRoundedRect(mask: Mask; rect: Rect; nw, ne, se, sw: float32;\n strokeWidth = 1.0)
|
|
|
|
strokeRoundedRect pixie.html#strokeRoundedRect,Mask,Rect,float32,float pixie: strokeRoundedRect(mask: Mask; rect: Rect; radius: float32; strokeWidth = 1.0)
|
2021-03-12 03:39:21 +00:00
|
|
|
strokeSegment pixie.html#strokeSegment,Image,Segment,SomeColor,float pixie: strokeSegment(image: Image; segment: Segment; color: SomeColor;\n strokeWidth = 1.0)
|
2021-02-25 14:23:07 +00:00
|
|
|
strokeSegment pixie.html#strokeSegment,Mask,Segment,float32 pixie: strokeSegment(mask: Mask; segment: Segment; strokeWidth: float32)
|
2021-03-12 03:39:21 +00:00
|
|
|
fillEllipse pixie.html#fillEllipse,Image,Vec2,float32,float32,SomeColor pixie: fillEllipse(image: Image; center: Vec2; rx, ry: float32; color: SomeColor;\n blendMode = bmNormal)
|
2021-02-25 14:23:07 +00:00
|
|
|
fillEllipse pixie.html#fillEllipse,Mask,Vec2,float32,float32 pixie: fillEllipse(mask: Mask; center: Vec2; rx, ry: float32)
|
2021-03-12 03:39:21 +00:00
|
|
|
strokeEllipse pixie.html#strokeEllipse,Image,Vec2,float32,float32,SomeColor,float pixie: strokeEllipse(image: Image; center: Vec2; rx, ry: float32; color: SomeColor;\n strokeWidth = 1.0)
|
2021-02-25 14:23:07 +00:00
|
|
|
strokeEllipse pixie.html#strokeEllipse,Mask,Vec2,float32,float32,float pixie: strokeEllipse(mask: Mask; center: Vec2; rx, ry: float32; strokeWidth = 1.0)
|
2021-03-12 03:39:21 +00:00
|
|
|
fillCircle pixie.html#fillCircle,Image,Vec2,float32,SomeColor pixie: fillCircle(image: Image; center: Vec2; radius: float32; color: SomeColor)
|
2021-02-25 14:23:07 +00:00
|
|
|
fillCircle pixie.html#fillCircle,Mask,Vec2,float32 pixie: fillCircle(mask: Mask; center: Vec2; radius: float32)
|
2021-03-12 03:39:21 +00:00
|
|
|
strokeCircle pixie.html#strokeCircle,Image,Vec2,float32,SomeColor,float pixie: strokeCircle(image: Image; center: Vec2; radius: float32; color: SomeColor;\n strokeWidth = 1.0)
|
2021-02-25 14:23:07 +00:00
|
|
|
strokeCircle pixie.html#strokeCircle,Mask,Vec2,float32,float pixie: strokeCircle(mask: Mask; center: Vec2; radius: float32; strokeWidth = 1.0)
|
2021-03-12 03:39:21 +00:00
|
|
|
fillPolygon pixie.html#fillPolygon,Image,Vec2,float32,int,SomeColor pixie: fillPolygon(image: Image; pos: Vec2; size: float32; sides: int; color: SomeColor)
|
2021-02-25 14:23:07 +00:00
|
|
|
fillPolygon pixie.html#fillPolygon,Mask,Vec2,float32,int pixie: fillPolygon(mask: Mask; pos: Vec2; size: float32; sides: int)
|
2021-03-12 03:39:21 +00:00
|
|
|
strokePolygon pixie.html#strokePolygon,Image,Vec2,float32,int,SomeColor,float pixie: strokePolygon(image: Image; pos: Vec2; size: float32; sides: int;\n color: SomeColor; strokeWidth = 1.0)
|
2021-02-25 14:23:07 +00:00
|
|
|
strokePolygon pixie.html#strokePolygon,Mask,Vec2,float32,int,float pixie: strokePolygon(mask: Mask; pos: Vec2; size: float32; sides: int;\n strokeWidth = 1.0)
|