အကောင်းဆုံးအခမဲ့ ရုပ်ပုံကို လှည့်ပါ
ညာဘက်သို့လှည့်သို့မဟုတ်ပုံရိပ်ကိုအပေါ်သို့အပြန်အလှန်ပုံရိပ်ကိုမှန်ကန်သောနည်းလမ်းကို, သို့မဟုတ် mirror it - အခမဲ့, lossless, no watermark.
လုပ်ဆောင်ပုံ
- တင်ရန်. ရုပ်ပုံကို လှည့်ဖို့ ရွေးပါ။
- လည်ပတ်မှု ရွေးပါ. 90, 180 or 270 degrees clockwise, and optionallyahorizontal or vertical flip.
- ဒေါင်းလုပ်လုပ်. လှည့်ထားတဲ့ ရုပ်ပုံကို မူလ ပုံစံအတိုင်း အလိုအလျောက် ကူးယူပါမယ်။
ကိရိယာအကြောင်း
90, 180 or 270 degrees clockwise, and optionally mirror it horizontally or vertically. It fixes the everyday problem ofaphoto or scan that came out sideways or upside-down. The 90-degree turns are lossless - pixels are rearranged, not re-encoded - so an turned JPG doesn't pick up extra compression. The output keeps the original format.
လူတွေဘာအတွက်သုံးပါသလဲ
- ဖုန်းမှ ဘေးဘက်သို့ထွက်လာသော ဓာတ်ပုံကို ပြင်ဆင်ပါ
- ဖတ်ရှုထားသော စာမျက်နှာကို ခေါင်းညိမ့်ပြီး ပြောင်းပါ
- ပုံစံအတွက် ရုပ်ပုံကို အလျားလိုက် ရုပ်ပုံ ပြောင်းပါ
- ပုံရိပ်ဖိုင်ကို မှန်ကန်သော ရှုထောင့်သို့ လှည့်ပါ
ဖန်တီးသူ API
သင့်ရဲ့ကိုယ်ပိုင် code ကိုမှဤ tool ကို Automate. အောက်ပါ endpoint ကို POST ကိုတောင်းဆိုချက်ကိုပို့ပြီး web tool ကိုထုတ်လုပ်အလားတူရလဒ်ကိုရယူ. ဒါဟာ IP ကိုတစ်ဦးနှုန်း-limited ဖြစ်ပါတယ်နှင့် signup မရှိလိုအပ်ပါသည် - မြင့်မားသောကန့်သတ်များအတွက် API ကို key ကိုလာကြပြီ.
https://best.free/api/tools/image-rotate/
| သတ်မှတ်ချက် | နမူနာ | လိုအပ်သည် | မှတ်စုများ |
|---|---|---|---|
file (ဖိုင်) |
photo.jpg |
အင်း | Any common image, ≤25 MB. |
angle |
90 |
ဟုတ်တယ် | 90 / 180 / 270 clockwise. |
flip |
none |
ဟုတ်တယ် | none / horizontal / vertical. |
curl -X POST https://best.free/api/tools/image-rotate/ \
-F 'file=@photo.jpg' \
-F 'angle=90' \
-F 'flip=none' \
-o rotated.png
import requests
files = {"file": open("photo.jpg", "rb")}
data = {"angle": 90, "flip": "none"}
r = requests.post("https://best.free/api/tools/image-rotate/", files=files, data=data)
with open("rotated.png", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("angle", 90);
fd.append("flip", "none");
const r = await fetch("https://best.free/api/tools/image-rotate/", { method: "POST", body: fd });
const blob = await r.blob(); // the rotated.png
တုံ့ပြန်မှု: The rotated/flipped image (same format).