OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:imgout
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Camera/jni/feature_mos/src/mosaic/
ImageUtils.cpp
313
FILE *
imgout
= fopen(filename, "w");
local
315
if (
imgout
== NULL) {
321
fprintf(
imgout
, "P6\n%d %d\n255\n", width, height);
323
fprintf(
imgout
, "P5\n%d %d\n255\n", width, height);
327
fwrite(image, sizeof(ImageTypeBase), numChannels*width*height,
imgout
);
329
fclose(
imgout
);
Completed in 987 milliseconds