Nota: Since all GIF support was removed from the GD library in version 1.6, this function is not available if you are using that version of the GD library. Support is expected to return in a version subsequent to the rerelease of GIF support in the GD library in mid 2004. For more information, see the GD Project site. ImageGIF is a powerful and simple app which helps you to create awesome GIFs converting images to gif. Just drag and drop image files on the ImageGIF menu bar icon and click Create Gif.
OnlineConvertFree converts your images for free. Convert your GIF to DOC online with no software to install.
How to convert gif to doc?
How to convert doc to gif?Upload gif-file
Convert gif to doc
Download your doc-file
Online and free gif to doc converter
CompuServe Graphics Interchange Format
File extension | .gif |
File category | images |
Description | GIF, Graphics Interchange Format, is one of the most popular bitmap image formats on the World Wide Web, allowing you to share images. It also supports transparent views of various animations. Such files are used to develop web advertising with sequentially changing pictures and the graphics shell of video files. They use scan-line images with the depth parameters up to 256 colors of the RGB palette. The process of compressing files in GIF does not affect the quality in any way, as there is no loss because of the compression technique. Due to this, it is possible to convert to other formats while preserving the original image properties. Many applications open the extension to view and process images and video content installed on PCs and mobile devices regardless of OS. |
Technical details | The format was developed by Compuserve specialists, especially for its use in the web environment, which provided broad public access to data on such files. The extension uses the LZW algorithm to carry out a parallel process with the removal of segments containing insufficient information. This ensures the preservation of high-quality pictures. Thanks to the Lempel-Ziv-Welch algorithm, the format handles graphic files with repeating sections well, particularly images with a large number of single-color pixels horizontally. Interlaced data storage is also possible. Scan-line data is compressed to the smallest size. Reducing the number of colors required to create an image is provided by removing shades unnecessary to perform this process. The range of available GIF colors is from 2 (black and white) to 256 while reducing the number of colors leads to a decrease in the file size. |
Programs | Apple Preview Microsoft Windows Photo Gallery Viewer |
Developer | CompuServe |
MIME type |
Microsoft Word Document
File extension | .doc |
File category | documents |
Description | DOC file extension is a binary file format native to Microsoft’s word processing application. It is basically a word processing document format that supports plain text, hyperlinks, alignments, images and more. DOC was once Microsoft’s most popular word processing document format. However, its popularity has faded following the introduction of DOCX. Nonetheless, you can still use DOC to create, edit and save document files. DOC is also widely used in a variety of platforms. The coding and framework emphasizes on font, size, shape and color of the text. |
Technical details | How to create and how to open an DOC fileCreating a DOC file requires a Microsoft application like Word. Simply launch the application, select “File” then “New” then “Blank Document” or create using a template. You can also create a DOC file on Google Documents. Many platforms support DOC files, so all you need to do is create a text file and save it or download it as a DOC file. There are many ways to open a DOC file. It is supported by many platforms and programs, starting with Microsoft’s suite of applications like Word and WordPad. You can also open DOC files online using Microsoft OneDrive or use any other program that supports the extension. LibreOffice, WPS Office and OpenOffice writers all support DOC files, so you can use them to create, save and open files with the DOC extension. Which other formats DOC can be converted into and whyYou can convert DOC files to many different formats, depending on the program you are using. Some of the popular file formats DOC can be converted into include:
File conversion is invaluable when working with different programs and DOC converts to various formats that allow creators and everyday users to create, save, open and edit using a wide variety of applications. For instance, converting DOC to DOCX improves data management and recovery and extends the possibilities of the former binary files. On the other hand, converting to PDF offers secure data storage and makes paper-to-digital conversions easier. DOC files are easy to convert. You can also get your file back by converting DOCX, PDF and other documents to DOC. It all depends on what you want to achieve and the program you are using. Some programs cannot export or save DOC files, so you need to convert the document to a compatible format before using it on the application. |
Programs | Microsoft Word IBM Lotus Symphony AbiWord |
Main program | Microsoft Word |
Developer | Microsoft |
MIME type | application/kswps |
FAQ
Image Gif Editor
gif converter
Image Gifts
4gifs Images
<?php
// Create a new image instance
$im = imagecreatetruecolor(100, 100);
// Do some image operations here
// Handle output
if(function_exists('imagegif'))
{
// For GIF
header('Content-Type: image/gif');
imagegif($im);
}
elseif(function_exists('imagejpeg'))
{
// For JPEG
header('Content-Type: image/jpeg');
imagejpeg($im, NULL, 100);
}
elseif(function_exists('imagepng'))
{
// For PNG
header('Content-Type: image/png');
imagepng($im);
}
elseif(function_exists('imagewbmp'))
{
// For WBMP
header('Content-Type: image/vnd.wap.wbmp');
imagewbmp($im);
}
else
{
imagedestroy($im);
die('No image support in this PHP server');
}
// If image support was found for one of these
// formats, then free it from memory
if($im)
{
imagedestroy($im);
}
?>