Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2004-12-09 16:09:11 +0300
committerKent Mein <mein@cs.umn.edu>2004-12-09 16:09:11 +0300
commitbdffe196afee7ea2cd5bbdffa3514b4ae2b68196 (patch)
tree80860cf841f227bafe614f068ee20c0b7ca36c48 /source/blender/imbuf/intern/writeimage.c
parenteae5d39899652f86e2b9288a69395dfcec27c8b1 (diff)
This fixes bug #1990
It moves targa, bmp, iris and png loading so that were not opening 2 file handles for each file, and made them like the jpeg stuff. Also cleaned up some minor other stuff. Kent
Diffstat (limited to 'source/blender/imbuf/intern/writeimage.c')
-rw-r--r--source/blender/imbuf/intern/writeimage.c51
1 files changed, 13 insertions, 38 deletions
diff --git a/source/blender/imbuf/intern/writeimage.c b/source/blender/imbuf/intern/writeimage.c
index e8dabe8d268..abbc8356aa4 100644
--- a/source/blender/imbuf/intern/writeimage.c
+++ b/source/blender/imbuf/intern/writeimage.c
@@ -55,11 +55,6 @@
#include "IMB_bitplanes.h"
#include "IMB_divers.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-
short IMB_saveiff(struct ImBuf *ibuf,char *naam,int flags)
{
short ok=TRUE,delpl=FALSE;
@@ -73,6 +68,18 @@ short IMB_saveiff(struct ImBuf *ibuf,char *naam,int flags)
if(imb_savejpeg(ibuf, naam, flags)) return (0);
else return (TRUE);
}
+ if (IS_png(ibuf)) {
+ return imb_savepng(ibuf,naam,flags);
+ }
+ if (IS_bmp(ibuf)) {
+ return imb_savebmp(ibuf,naam,flags);
+ }
+ if (IS_tga(ibuf)) {
+ return imb_savetarga(ibuf,naam,flags);
+ }
+ if (IS_iris(ibuf)) {
+ return imb_saveiris(ibuf,naam,flags);
+ }
file = open(naam, O_BINARY | O_RDWR | O_CREAT | O_TRUNC, 0666);
if (file < 0) return (FALSE);
@@ -84,40 +91,8 @@ short IMB_saveiff(struct ImBuf *ibuf,char *naam,int flags)
}
/* Put formats that take a filehandle here */
- if (IS_png(ibuf)) {
- ok = imb_savepng(ibuf,file,flags);
- if (ok) {
- close (file);
- return (ok);
- }
- }
-
- if (IS_bmp(ibuf)) {
- ok = imb_savebmp(ibuf,file,flags);
- if (ok) {
- close (file);
- return (ok);
- }
- }
-
- if (IS_tga(ibuf)) {
- ok = imb_savetarga(ibuf,file,flags);
- if (ok) {
- close (file);
- return (ok);
- }
- }
-
- if (IS_iris(ibuf)) {
- ok = imb_saveiris(ibuf,file,flags);
- if (ok) {
- close (file);
- return (ok);
- }
- }
- if (ok) ok = imb_start_iff(ibuf,file);
-
+ ok = imb_start_iff(ibuf,file);
if (IS_amiga(ibuf)){
IMB_flipy(ibuf);
if (flags & IB_rect){