cleanup project from freeimage references

This commit is contained in:
Vadim Lopatin 2015-01-20 09:39:04 +03:00
parent eddda1243b
commit 4d5169c852
3 changed files with 0 additions and 204 deletions

View File

@ -1,67 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{ED644EF9-A446-4987-873F-B7F3CC28E3B7}</ProjectGuid>
<UseDefaultCompiler>true</UseDefaultCompiler>
<PreferOneStepBuild>true</PreferOneStepBuild>
<Compiler>DMD2</Compiler>
<IncrementalLinking>true</IncrementalLinking>
<DependentProjectIds>
<DependentProjectIds>
<String>{0B737AB4-0C3B-4250-A133-3AD793E2D322}</String>
</DependentProjectIds>
</DependentProjectIds>
<Includes>
<Includes>
<Path>../../../DerelictUtil/source</Path>
</Includes>
</Includes>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug</OutputPath>
<ObjectsDirectory>obj/Debug</ObjectsDirectory>
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
<UnittestMode>false</UnittestMode>
<OutputName>DerelictFI</OutputName>
<Target>StaticLibrary</Target>
<Externalconsole>true</Externalconsole>
<DebugLevel>0</DebugLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release</OutputPath>
<ObjectsDirectory>obj/Release</ObjectsDirectory>
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
<UnittestMode>false</UnittestMode>
<OutputName>DerelictFI</OutputName>
<Target>Executable</Target>
<Externalconsole>true</Externalconsole>
<DebugLevel>0</DebugLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Unittest|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Unittest</OutputPath>
<ObjectsDirectory>obj/Unittest</ObjectsDirectory>
<LinkinThirdPartyLibraries>false</LinkinThirdPartyLibraries>
<UnittestMode>true</UnittestMode>
<OutputName>DerelictFI</OutputName>
<Target>Executable</Target>
<Externalconsole>true</Externalconsole>
<DebugLevel>0</DebugLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\..\DerelictFI\source\derelict\freeimage\freeimage.d">
<Link>freeimage.d</Link>
</Compile>
<Compile Include="..\..\..\DerelictFI\source\derelict\freeimage\functions.d">
<Link>functions.d</Link>
</Compile>
<Compile Include="..\..\..\DerelictFI\source\derelict\freeimage\types.d">
<Link>types.d</Link>
</Compile>
</ItemGroup>
</Project>

View File

@ -190,11 +190,6 @@
</Config>
<Folder name="dlangui">
<Folder name="3rdparty">
<Folder name="DerelictFI">
<File path="..\DerelictFI\source\derelict\freeimage\freeimage.d" />
<File path="..\DerelictFI\source\derelict\freeimage\functions.d" />
<File path="..\DerelictFI\source\derelict\freeimage\types.d" />
</Folder>
<Folder name="DerelictFT">
<File path="..\DerelictFT\source\derelict\freetype\ft.d" />
<File path="..\DerelictFT\source\derelict\freetype\functions.d" />

View File

@ -20,9 +20,6 @@ Authors: Vadim Lopatin, coolreader.org@gmail.com
*/
module dlangui.graphics.images;
//immutable bool USE_FREEIMAGE = true;
//version = USE_FREEIMAGE;
//version = USE_DEIMAGE;
version = USE_DLIBIMAGE;
@ -113,138 +110,9 @@ ColorDrawBuf loadImage(string filename) {
}
version (USE_FREEIMAGE) {
/// load and decode image from stream to ColorDrawBuf, returns null if loading or decoding is failed
ColorDrawBuf loadImage(InputStream stream) {
if (stream is null || !stream.isOpen)
return null;
return loadFreeImage(stream);
}
}
class ImageDecodingException : Exception {
this(string msg) {
super(msg);
}
}
shared static this() {
//import derelict.freeimage.freeimage;
//DerelictFI.load();
}
version (USE_FREEIMAGE) {
ColorDrawBuf loadFreeImage(InputStream stream) {
import derelict.freeimage.freeimage;
static bool FREE_IMAGE_LOADED;
if (!FREE_IMAGE_LOADED) {
DerelictFI.load();
FREE_IMAGE_LOADED = true;
}
ubyte[] imagebuf;
ubyte[4096] readbuf;
for (;;) {
size_t bytesRead = stream.read(readbuf);
if (!bytesRead)
break;
imagebuf ~= readbuf[0..bytesRead];
}
//pointer to the image, once loaded
FIBITMAP *dib = null; //image format
FREE_IMAGE_FORMAT fif = FIF_UNKNOWN;
// attach the binary data to a memory stream
FIMEMORY *hmem = FreeImage_OpenMemory(imagebuf.ptr, imagebuf.length);
fif = FreeImage_GetFileTypeFromMemory(hmem);
//check that the plugin has reading capabilities and load the file
if(!FreeImage_FIFSupportsReading(fif)) {
FreeImage_CloseMemory(hmem);
return null;
}
// load an image from the memory stream
dib = FreeImage_LoadFromMemory(fif, hmem, 0);
//if the image failed to load, return failure
if (!dib) {
Log.e("Failed to decode image");
FreeImage_CloseMemory(hmem);
return null;
}
//retrieve the image data
ubyte * data = cast(ubyte*)FreeImage_GetBits(dib);
//get the image width and height, and size per pixel
int width = FreeImage_GetWidth(dib);
int height = FreeImage_GetHeight(dib);
int stride = FreeImage_GetPitch(dib);
int bpp = FreeImage_GetBPP(dib);
int pixelSize = (bpp + 7)/8;
//Log.d("image ", width, "x", height, " stride ", stride, "(", stride / pixelSize, ") bpp ", bpp, " pixelSize ", pixelSize);
FREE_IMAGE_COLOR_TYPE colorType = FreeImage_GetColorType(dib);
int transparentIndex = 0;
int transparencyCount = 0;
RGBQUAD * palette = null;
ubyte * transparencyTable = null;
if (colorType == FIC_PALETTE) {
palette = FreeImage_GetPalette(dib);
transparentIndex = FreeImage_GetTransparentIndex(dib);
transparencyCount = FreeImage_GetTransparencyCount(dib);
transparencyTable = FreeImage_GetTransparencyTable(dib);
}
//int size = stride*height;
ColorDrawBuf res = new ColorDrawBuf(width, height);
//swap R and B and invert image while copying
ubyte* src;
uint* dst;
uint r, g, b, a;
for( int i = 0, ii = height-1; i < height ; ++i, --ii ) {
dst = res.scanLine(i);
src = data + ii * stride;
for( int j = 0; j < width; ++j, ++dst, src += pixelSize ) {
if (colorType == FIC_PALETTE) {
ubyte index = src[0];
a = 0;
if (transparencyTable !is null) {
a = transparencyTable[index] ^ 0xFF;
} else if (transparentIndex >= 0 && index >= transparentIndex && index < transparentIndex + transparencyCount) {
a = 0xFF;
}
RGBQUAD pcolor = palette[index];
r = pcolor.rgbRed;
g = pcolor.rgbGreen;
b = pcolor.rgbBlue;
dst[0] = (a << 24) | (r << 16) | (g << 8) | b;
} else {
a = 0;
switch (pixelSize) {
case 4:
a = src[3] ^ 255;
// fall through
goto case;
case 3:
r = src[2];
g = src[1];
b = src[0];
break;
case 2:
// todo: do something better
r = g = src[1];
b = src[0];
break;
default:
case 1:
r = g = b = src[0];
break;
}
dst[0] = (a << 24) | (r << 16) | (g << 8) | b;
}
}
}
FreeImage_CloseMemory(hmem);
return res;
}
}