The image-conversion tag has no wiki summary.
1
vote
1answer
65 views
V4L2_PIX_FMT_YUYV: convert from YUYV to RGB24?
I'm capturing image data from a webcam using Video4Linux2. The pixel format returned by the device is V4L2_PIX_FMT_YUYV. According to http://linuxtv.org/downloads/v4l-dvb-apis/V4L2-PIX-FMT-YUYV.html ...
-2
votes
0answers
47 views
Image saved unintentionally as grayscale when converting between formats with PHP [closed]
I am loading an image with
function imagecreatefromfile( $filename ) {
if (!file_exists($filename)) {
throw new InvalidArgumentException('File "'.$filename.'" not found.');
}
...
0
votes
1answer
98 views
PHP resize image, convert to jpg, and display in browser
I have a form to upload a file:
<form method="POST" action="upload-image.php">
<input type="file" name="file"><br>
<input type="submit" value="Submit">
</form>
...
0
votes
3answers
43 views
php image resize and convert to jpg on upload
How to resize an image and convert to .jpg on upload? Basically something like the post here
How do i resize and convert an uploaded image to a PNG using GD
But i need to convert to JPG...
I tried ...
0
votes
1answer
98 views
byte array to Base64String (image conversion)
I am converting an image to byte array on client side in my wp7 app and then sending it to
a web service(server), the code is shown below--->
client side
private void SendImage(byte[] data, long ...
0
votes
1answer
315 views
iOS : converting png image to 1 bit bmp images
My requirement is to convert a png file into 1 bit monochrome bitmap file. I have a UIImage object and I want to get the representation of it as a 1 bit monochrome bmp.
1) Is there any ...
0
votes
3answers
141 views
convert an image from IPL_DEPTH_8U to IPL_DEPTH_32S
How can I convert an image from IPL_DEPTH_8U to IPL_DEPTH_32S?
I need to use the watershed function and I have a marker image in
IPL_DEPTH_8U. The problem is that the watershed function only accepts
...
0
votes
1answer
49 views
How do I save an image with a border (not adding it with CSS)?
An Image should be stored in a specific format and the remaining space should be filled black.
My problem is, that the picture is'nt shown in an html page, it should just be converted and stored in ...
0
votes
5answers
163 views
jPeg encoder super slow, how to Optimize it?
I'm building an App with actionscript 3.0 in my Flash builder. This is a followup question this question.
I need to upload the bytearray to my server, but the function i use to convert the bitmapdata ...
2
votes
2answers
104 views
image replacing with canvas doesn't work
I have a function that converts images to canvas.I tried to replace the created canvas inside the function with the related image using jquery .replaceWith() but it doesn't work.
JS:
imgArray = ...
1
vote
1answer
165 views
Converting a hex file into a bmp
I am testing an electronic chip (software simulated) with an openly available library (as in "open source"). The test for this chip (available with the library) has a hex file as an input ..... This ...
2
votes
1answer
339 views
Client-side conversion of rgb-jpg to 8-bit-jpg using Canvas+HTML5
Many articles shows ways of converting jpeg files to grayscale using canvas+html5 at the client-side. But what I need is to convert an image to 8bit grayscale to reduce its size before uploading to my ...
0
votes
0answers
77 views
Image conversion in silverlight
How to convert different types of images in silverlight?In windows form it is very simple via System.Drawing namespace.But in silverlight it is absent,so are there any alternative in this case or any ...
1
vote
1answer
335 views
In opencv how do I copy and scale a greyscale image into another colour image
I want to composite a number of images into a single window in openCV. I had found i could create a ROI in one image and copy another colour image into this area without any problems.
Switching the ...
-2
votes
5answers
2k views
Convert BufferedImage to ImageIcon
How can I convert a BufferedImage to an ImageIcon?
I can not find any documentation on this.
0
votes
0answers
299 views
How to copy text from picture in onenote?
While copying text from any picture in onenote, how to copy text in specific format or is their any way to copy text by specifing delimeters.
When pasting the copied text from picture in notepad, it ...
2
votes
1answer
164 views
Convert Bitmap to WebP Image?
Anyone know if it's possible to convert a Bitmap to a WebP image using C#?
Been Google-ing around but wasn't able to find anything for C#. I found this:
mc-kay/libwebp-sharp · GitHub but it doesn't ...
0
votes
1answer
295 views
Gaussian blur with image convolution
I've been trying to blur some text for a while now using the following code in PHP:
$image = imagecreate(150,25);
$background = ImageColorAllocate($image, 255, 255, 255);
$foreground = ...
1
vote
2answers
329 views
RGB888 (24 bit) to PNG/JPEG image algorithm
I need to convert 24 bit RGB(888) image data to PNG or JPEG image (whichever possible). Need simpler approach to do this same like converting RGB888 to BMP without any compression. Would be great if ...
2
votes
1answer
529 views
How to convert CMYK/RGB TIFF to RGB JPEG using PHP IMagick
I have a PHP application which needs to deal with incoming TIFF files. I have neither control nor knowledge over the colorspaces of this TIFFs and the application should store all incoming images as ...
1
vote
3answers
324 views
Error : “Out of Memory ”, when converting .jls image to byte[] array
I have this function which converts an Image to Byte array.
public byte[] imageToByteArray(System.Drawing.Image imageIn)
{
MemoryStream ms = new MemoryStream();
imageIn.Save(ms, ...
2
votes
2answers
388 views
Converting a pdf to jpg images using c++ in Qt
the heading says it all actually:
i want to convert a pdf file into several jpg images. This is to be a part of a software coded in c++ (I'm using Qt for my interface if that matters... :)
...
0
votes
1answer
121 views
C# Converting a 1bit BMP to version 3.0
I currently have a C# project given to me that requires the converting any image to a 1bit Bitmap Image.
So far so good. The code is working perfectly well.
When the coverted file is sent to another ...
1
vote
1answer
491 views
Conversion PDF to PNG or JPEG is very very slow using ImageMagick
I have a working PDF to PNG conversion script using PHP and ImageMagick but I am having a problem with the speed of the conversion.
I know it works because with a very small PDF the time taken to ...
4
votes
3answers
497 views
How can I display an image in the terminal?
Is there any sort of utility I can use to convert an image to ASCII and then print it in my terminal? I looked for one but couldn't seem to find any.
0
votes
1answer
263 views
Captured screen & convetion to Byte[] (image comparison methods)
I've red a few posts regarding image comparison, and I tried to save image captured from screen then store it in file system .
I used conversion methods to convert captured image into byte[] for ...
0
votes
4answers
835 views
image(png, jpeg) to dll converter
I need to convert my image file (.pnd, .jpeg etc) to dll file in order to put it in windows registry, kindly help if any one had tried this before.
0
votes
2answers
202 views
Convert UIImage to tiff/tif file
In my iPhone app, I need to convert UIImage to tiff/tif file for calling some API with tif type of parameter. So I'm supposed to get the UIImage from iphone photo library or taking a photo from ...
2
votes
0answers
106 views
Convert RGB 565 (Android Image) in to RGB 24(888) Image
I need convert an Android format (RGB 565) Image to RGB 24 format to avoid distraction when it displayed on computer. Any Suggestions? If someone can help me with an algorithm that'll be great.. ...
1
vote
2answers
398 views
How to convert images with following extensions jpg, pdf, gif, xls, xlsx, doc, docx, rtf, bmp, jpeg, csv to .TIFF in java?
How to convert images with following extensions
jpg, pdf, gif, xls, xlsx, doc, docx, rtf, bmp, jpeg, csv to .TIFF in Java ?
I want to convert all the above mentioned image extensions to .TIFF ...
0
votes
2answers
164 views
Uncommon png file iOS display
In this post, i was wondering why my png files were badly displayed on retina displays.
I finaly found that the problem came from the PNG file itself: when I open it and save it again with photoshop ...
0
votes
1answer
338 views
Convert J2C(Jpeg 2000) image to JPEG
I have a bunch of images in Jpeg 2000 format(J2C). I need to display that images in browser and therefore I have to convert these images to simple JPEG format. I am wondering if C# has some built ...
0
votes
1answer
361 views
YcbCr image representation
I m new in image processing field. I have worked with bmp images but currently i have a problem at hand which needs image to be converted into YCbCr color space before further processing. I have read ...
0
votes
0answers
195 views
How to convert binary codes to black and white images
Is there any software(or online website) which can be used to convert binary codes to black and white images (eg: 0 as black and 1 as white). i googled it but i didnt find any softwares now i am ...
0
votes
0answers
117 views
Convert Canvas to PNG on Rails, server side
I know there are ways to convert a canvas to a PNG image on (some) browser clients into a encoded Base64 string, but I'm searching for a way that is a) server side and b) doesn't use image magic.
If ...
0
votes
0answers
116 views
Saving Texture2D to JPEG
i was wondering if its possible to save texture2d to jpeg without using texture2d.saveAsJpeg method, as its memory leaking?
(not the ImageTools Solution - because I'm using cocos-2d)
2
votes
1answer
608 views
Compress JP2 (JPEG2000) image with a high compression level
After reading Image from database, I need to convert that Image to JP2 (JPEG2000)
Update:
I used FreeImage to convert the image to JP2
// Load bitmap
FIBITMAP dib = ...
0
votes
3answers
1k views
How to convert CSS3-based HTML to image [closed]
How can I convert a CSS3 or CSS2-based HTML page into a JPEG or PNG (with transparent background) image?
Is there any command-line tool or php-based API that can be installed on my Linux server and ...
0
votes
1answer
864 views
OpenCV: scale and convert IplImage data
I'm totally new in OpenCV so hopefully that's not a too stupid question.
As a result of a OpenCV operation (capturing image data from a device) I get back a IplImage.
Depending on its real size I ...
0
votes
0answers
193 views
a bit of color math - (photoshop HSV to Nuke HSV)
I hoping someone knows what the math is behind the Photoshop's Hue and Saturation Filter and/or how to translate that to Nuke.
Issue:
I get my client notes in Photoshop which includes an image with ...
0
votes
1answer
511 views
How to convert 3D models to SVG line art?
I often work with 3D CAD models, which I receive as SolidWorks or PDF files. I need to turn them into black & white line art, like you'd find in a patent application. (In fact, exactly like what ...
1
vote
1answer
698 views
ffmpeg image to video sequence stops after 10
Probably a fast anwser, but my first time trying to do this. I have 77 jpeg pictures, I have renamed them to be 000.jpg - 076.jpg. The next step is using ffmpeg and here is my command statement:
...
2
votes
1answer
789 views
How to convert image into Hex String in android?
I am need to convert image into hex string to send it to web server. I am using this method to convert image to byte array
BitmapFactory.Options options = new BitmapFactory.Options();
...
4
votes
1answer
361 views
Public service to convert bmp/gif/png/etc to jpg?
Is there any public service which I can use to convert any of the common image formats (gif, png, bmp, tga, etc) to a jpg? I'm looking for something I can use from within javascript, sending the ...
-3
votes
1answer
355 views
Python: Binary to image Conversion
I have a binary file which contains an image with header.
The details are as follows.
The first 1024 bytes contain header Then 32 bytes of header for each line
Then 4608 bytes constitute one line ...
5
votes
1answer
1k views
How I can load a Png image from file which have another extension?
I'm using a TImage component to load some png images, but some of them have the .imp extension. I add the Vcl.Imaging.pngimage unit to my code and I'm using this code to load the images
if ...
0
votes
1answer
676 views
PNG to Monochrome Bitmap for Thermal Printer in PHP?
I'm trying to dynamically generate QR codes for my thermal printer. In order to do this, I have to send a request to my server (say something like http://domain.example.com/qr?url=).
This page should ...
2
votes
2answers
336 views
convert a pdf for print
I have some pdf documents and I need to find a way to automate convert all the images included in the pdfs from RGB to CMYK.
I prefer to use c# as programing language. I worked in the past with ...
0
votes
1answer
309 views
How to convert S57 chart to PNG image using the ogr2ogr
I have a S57(.000) chart file, I want to convert it using ogr2ogr to a PNG file. Which command line should I use? If not possible to convert direct to PNG file, can I convert it to other format like ...
7
votes
2answers
800 views
Replacing vector images in a PDF with raster images
Is there any easy (scriptable) way to convert a PDF with vector images into a PDF with raster images? In other words, I want to generate a PDF with the exact same (un-rasterized) text but with each ...





