Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
d7535bf1
Commit
d7535bf1
authored
26 years ago
by
Per Hedbor
Browse files
Options
Downloads
Patches
Plain Diff
Fixed documentation
Rev: src/modules/Image/encodings/tga.c:1.2
parent
3fa27956
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/Image/encodings/tga.c
+7
-16
7 additions, 16 deletions
src/modules/Image/encodings/tga.c
with
7 additions
and
16 deletions
src/modules/Image/encodings/tga.c
+
7
−
16
View file @
d7535bf1
/*
* $Id: tga.c,v 1.
1
1999/04/06 00:3
7
:2
9
per Exp $
* $Id: tga.c,v 1.
2
1999/04/06 00:3
9
:2
2
per Exp $
*
* T
GA
codec for pike. Based on the tga plugin for gimp.
* T
arga
codec for pike. Based on the tga plugin for gimp.
*
* The information below is from the original TGA module.
*
...
...
@@ -27,8 +27,6 @@
/*
**! module Image
**! submodule TGA
...
...
@@ -805,15 +803,10 @@ static struct buffer save_tga(struct image *img, struct image *alpha,
/* Pike wrappers. */
/* Pike functions. */
/*
**! method object _decode(string data)
**! Decodes a T
GA
image to a mapping.
**! Decodes a T
arga
image to a mapping.
**! The mapping follows this format:
**! ([ "image":img_object, "alpha":alpha_channel ])
**!
...
...
@@ -838,7 +831,7 @@ void image_tga__decode( INT32 args )
/*
**! method object decode(string data)
**! Decodes a
PNG
image.
**! Decodes a
Targa
image.
**!
**! note
**! Throws upon error in data.
...
...
@@ -858,7 +851,7 @@ void image_tga_decode( INT32 args )
/*
**! method string encode(object image)
**! method string encode(object image, mapping options)
**! Encodes a
PNG
image.
**! Encodes a
Targa
image.
**!
**! The <tt>options</tt> argument may be a mapping
**! containing zero or more encoding options:
...
...
@@ -867,7 +860,7 @@ void image_tga_decode( INT32 args )
**! normal options:
**! "alpha":image object
**! Use this image as alpha channel
**! (Note: T
GA
alpha channel is grey.
**! (Note: T
arga
alpha channel is grey.
**! The values are calculated by (r+2g+b)/4.)
**!
**! "raw":1
...
...
@@ -875,8 +868,6 @@ void image_tga_decode( INT32 args )
**!
**! </pre>
**!
**! note
**! Please read some about PNG files.
*/
static
struct
pike_string
*
param_raw
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment