Como reduzir o tamanho da imagem no windows phone

Estou tentando portar meu aplicativo no windows phone. eu tenho que fazer upload de uma imagem no servidor, por isso é em tamanho pequeno

public void CompressImage(int i, int j)
        {
            bmp1.SetPixel(j, i, Color.FromArgb(bmp.GetPixel(j, i).R, bmp.GetPixel(j, i).G, bmp.GetPixel(j, i).B));   
        }



        private void bLoadImage_Click(object sender, EventArgs e)
        {
            OpenFileDialog file = new OpenFileDialog();
            if (file.ShowDialog() == DialogResult.OK)
            {
                pictureBox1.Image = new Bitmap(file.FileName);
            }
        }


        private void bCompression_Click(object sender, EventArgs e)
        {
            bmp = new Bitmap(pictureBox1.Image);
            bmp1 = new Bitmap(bmp.Width, bmp.Height);
            for (int i = 1; i < bmp.Height; i++)
                for (int j = 1; j < bmp.Width; j++)
                {
                    CompressImage(i, j);
                }
            pictureBox2.Image = bmp1;
            bmp1.Save("Picture.jpeg", System.Drawing.Imaging.ImageFormat.Jpeg);
        }

Depois de pesquisar no google, descobri que o Windows Phone não suporta Bitmap ... alguma idéia de como posso fazer a mesma coisa no Windows Phone ou qualquer outra alternativa para fazer isso

questionAnswers(4)

yourAnswerToTheQuestion