Click here to Skip to main content
15,890,512 members
Home / Discussions / C#
   

C#

 
JokeRe: Why am I recieving corrupt images? Pin
Wes Aday24-May-10 8:27
professionalWes Aday24-May-10 8:27 
JokeRe: Why am I recieving corrupt images? Pin
DaveyM6924-May-10 9:06
professionalDaveyM6924-May-10 9:06 
GeneralRe: Why am I recieving corrupt images? Pin
TimSWatson25-May-10 4:42
TimSWatson25-May-10 4:42 
Questiontext alignment problem on the image.... Pin
Nivas8224-May-10 1:40
Nivas8224-May-10 1:40 
AnswerRe: text alignment problem on the image.... Pin
Luc Pattyn24-May-10 4:43
sitebuilderLuc Pattyn24-May-10 4:43 
GeneralRe: text alignment problem on the image.... Pin
Nivas8226-May-10 22:04
Nivas8226-May-10 22:04 
GeneralRe: text alignment problem on the image.... Pin
Luc Pattyn27-May-10 3:10
sitebuilderLuc Pattyn27-May-10 3:10 
AnswerRe: text alignment problem on the image.... [modified] Pin
Nivas8228-May-10 19:31
Nivas8228-May-10 19:31 
Hi,

I got the output as i expected. I Place the picture box size with original image size and its works as expected (initially tried with picture box size mode as "zoom") .

replace or add the below code in the previous once at appropriate areas.

In open tool strip menu
pictureBox1.Image = image;
pictureBox1.Size = image.Size;


piturebox paint event

//for  label1.TextAlign == ContentAlignment.TopLeft)
    e.Graphics.DrawString(label1.Text, label1.Font, new SolidBrush(label1.ForeColor), rect);
                            g.DrawString(label1.Text, label1.Font, new SolidBrush(label1.ForeColor), rect);


in Save tool tip

bac = pictureBox1.Image;

using (Graphics g = Graphics.FromImage(bac))
   {
g.DrawImage(mybitmap,0,0);
    }
bac.Save(filename, ImageFormat.Jpeg);


modified on Saturday, May 29, 2010 2:12 AM

AnswerRe: text alignment problem on the image.... Pin
Nivas8230-May-10 22:37
Nivas8230-May-10 22:37 
QuestionUnable to figure out a proper subject line. Sorry. :( Pin
dashingsidds23-May-10 23:41
dashingsidds23-May-10 23:41 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Richard MacCutchan23-May-10 23:51
mveRichard MacCutchan23-May-10 23:51 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
dashingsidds24-May-10 0:40
dashingsidds24-May-10 0:40 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
Richard MacCutchan24-May-10 1:26
mveRichard MacCutchan24-May-10 1:26 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
PIEBALDconsult24-May-10 4:32
mvePIEBALDconsult24-May-10 4:32 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
dashingsidds24-May-10 18:43
dashingsidds24-May-10 18:43 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
PIEBALDconsult25-May-10 2:40
mvePIEBALDconsult25-May-10 2:40 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Pete O'Hanlon24-May-10 0:25
mvePete O'Hanlon24-May-10 0:25 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
dashingsidds24-May-10 0:43
dashingsidds24-May-10 0:43 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
Pete O'Hanlon24-May-10 0:49
mvePete O'Hanlon24-May-10 0:49 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Łukasz Nowakowski24-May-10 0:51
Łukasz Nowakowski24-May-10 0:51 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Abhinav S24-May-10 1:40
Abhinav S24-May-10 1:40 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Kunal Chowdhury «IN»24-May-10 2:38
professionalKunal Chowdhury «IN»24-May-10 2:38 
AnswerRe: Unable to figure out a proper subject line. Sorry. :( Pin
Luc Pattyn24-May-10 4:49
sitebuilderLuc Pattyn24-May-10 4:49 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
dashingsidds24-May-10 18:31
dashingsidds24-May-10 18:31 
GeneralRe: Unable to figure out a proper subject line. Sorry. :( Pin
Luc Pattyn24-May-10 18:40
sitebuilderLuc Pattyn24-May-10 18:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.