מיזוג JPG ל-JPG באינטרנט בחינם

מיזוג JPG ל-JPG באינטרנט

מיזוג JPG ל-JPG בקלות באמצעות כלי המיזוג המקוון שלנו JPG בחינם. שלב תמונות JPG מרובות ל-JPG יחיד בכמה שלבים.

כיצד למזג JPG ל-JPG

  • העלה את תמונות ה-JPG שברצונך למזג.
  • בחר את מצב המיזוג, כלומר אנכי, אופקי או רשת.
  • בחר את פורמט הפלט והתחל למזג.
  • לאחר שתסיים, קובץ הפלט יהיה זמין להורדה.

שלב כמה תמונות JPG שתרצה. מיזוג מסמכים סרוקים, תמונות או כל תמונות JPG אחרות לקובץ אחד. צור פלט של תמונות JPG הממוזגות בפורמט הרצוי, למשל JPG, PNG, PDF, DOCX וכו’. אין צורך להתקין תוכנת מיזוג JPG ל-JPG.

פשוט פתח את מיזוג JPG מקוון ב-100% בחינם וממזג JPG ל-JPG באיכות גבוהה. תמונות JPG שאתה מעלה נשמרות מאובטחות ונמחקות מהשרתים שלנו לאחר 24 שעות. לפיכך, אנו מספקים אבטחה נוספת כדי להגן על הקבצים שלך.

שלב JPG ל-JPG - מדריך למפתחים

אתה יכול גם למזג תמונות JPG באופן פרוגרמטי באמצעות הספרייה העצמאית שלנו או Cloud API. הסעיפים הבאים מספקים לך סקירה מהירה כיצד לעשות זאת.

מיזוג תמונות JPG ב-C#

להלן השלבים לשילוב תמונות JPG ב-C#.

// Create a list of images
string[] imagePaths = { "image1.jpg", "image2.jpg", "image3.jpg", "image4.jpg", "image5.png" };

// Get resulting image's size
List<Size> imageSizes = new List<Size>();
foreach (string imagePath in imagePaths)
{
    using (RasterImage image = (RasterImage)Image.Load(imagePath))
    {
        imageSizes.Add(image.Size);
    }
}

int newWidth = imageSizes.Max(size => size.Width);
int newHeight = imageSizes.Sum(size => size.Height);

// Combine images into new one
using (MemoryStream memoryStream = new MemoryStream())
{
    // Create output source
    StreamSource outputStreamSource = new StreamSource(memoryStream);
    
    // Create jpeg options
    JpegOptions options = new JpegOptions() { Source = outputStreamSource, Quality = 100 };
    
    // Create output image
    using (JpegImage newImage = (JpegImage)Image.Create(options, newWidth, newHeight))
    {
        int stitchedHeight = 0;
        // Merge images
        foreach (string imagePath in imagePaths)
        {
            using (RasterImage image = (RasterImage)Image.Load(imagePath))
            {
                Rectangle bounds = new Rectangle(0, stitchedHeight, image.Width, image.Height);
                newImage.SaveArgb32Pixels(bounds, image.LoadArgb32Pixels(image.Bounds));
                stitchedHeight += image.Height;
            }
        }
        
        // Save the merged image
        newImage.Save("merged-image.jpg");
    }
}

קרא מדריך מפורט על איך למזג תמונות JPG ב-C#.

שלב תמונות JPG ב-Java

להלן השלבים ודוגמת הקוד עבור מפתחי Java.

// List of images
String[] imagePaths = { "image.jpg", "image.jpg" };

// Output image path
String outputPath = "output-horizontal.jpg";
String tempFilePath = "temp.jpg";

// Get resulting image size
int newWidth = 0;
int newHeight = 0;
for (String imagePath : imagePaths) {
    try (RasterImage image = (com.aspose.imaging.RasterImage) com.aspose.imaging.Image.load(imagePath)) {
        Size size = image.getSize();
        newWidth += size.getWidth();
        newHeight = Math.max(newHeight, size.getHeight());
    }
}

// Combine images into new one
try (JpegOptions options = new JpegOptions()) {
    Source tempFileSource = new FileCreateSource(tempFilePath, true);
    options.setSource(tempFileSource);
    options.setQuality(100);

    // Create resultant image
    try (JpegImage newImage = (JpegImage) Image.create(options, newWidth, newHeight)) {
        int stitchedWidth = 0;
       for (String imagePath : imagePaths) {
            try (RasterImage image = (RasterImage) Image.load(imagePath)) {
                Rectangle bounds = new Rectangle(stitchedWidth, 0, image.getWidth(), image.getHeight());
                newImage.saveArgb32Pixels(bounds, image.loadArgb32Pixels(image.getBounds()));
                stitchedWidth += image.getWidth();
            }
        }
    
            // Save output image
        newImage.save(outputPath);
    }
}

קרא את המדריך המלא על מיזוג תמונות JPG ב-Java.

חקור את Cloud API

אתה יכול גם לחקור את API עיבוד תמונה מבוסס ענן כדי למזג תמונות.

שאלות נפוצות

איך למזג JPG ל JPG באינטרנט?

אנו מספקים את הדרך הפשוטה ביותר למיזוג תמונות JPG. העלה את קובצי ה-JPG, בחר מצב, בחר את פורמט הפלט והתחל את תהליך המיזוג. לאחר המיזוג, קובץ הפלט יהיה זמין להורדה.

כמה זמן לוקח למיזוג JPG ל-JPG?

מיזוג JPG המקוון שלנו מהיר להפליא וממזג תמונות JPG תוך כמה שניות.

כיצד אוכל ליצור כלי מיזוג JPG?

אתה יכול לעשות זאת באמצעות הספריות העצמאיות או Cloud API.

האם כלי המיזוג הזה של JPG תלוי בדפדפן?

לא, אתה יכול להשתמש בכל דפדפן מודרני כמו Chrome, Edge, Firefox וכו'.

ראה גם