Joomfish and phoca gallery image title character - joomla1.5

I use Joomfish for translating phoca gallery image titles , But it shows only 15 character of image title and put ... at the end of it .
It only limits character for image titles and other content elements of joomfish work fine .
How can I fix it to show more character?
joomla 1.5
joomfish 2.0.4

this is because the titles are cut to fit the image box, you can change it Paramters:
Number of Characters in Name
http://www.phoca.cz/documents/2-phoca-gallery-component/11-global-configuration-parameters-component-in-menu-item

Related

Is it possible to change the size of image in github markdown without using HTML tag?

I got a PR with some description and because it's really easy, I just drag & drop my image in that description but sometimes I forget to add the width.
Is it there a way to format that markdown file so that each attachment in it will have by default a width of 200 for example?

Facebook share full size image with a quote

I want to be able to have a link on my website that upon clicking it opens a Facebook share dialog containing the image displayed with full size along with a custom text quote.
The 2 options that I tried with the Facebook share dialog don't achieve that result:
The first option is to use https://www.facebook.com/dialog/share?app_id=3xxxxxx334&quote=Some%20quote&href=https%3A%2F%2Fwww.example.com%2Fsome_page, and use og:image tag on www.example.com/some_page with the image that I want to display
The problem with this approach is that the image is displayed cropped to match the aspect ratio that the Facebook uses (1.9:1) which is different than the aspect ratio that I use for the image (1.3:1)
The second option is to use https://www.facebook.com/dialog/share?app_id=3xxxxxx334&media=[%27https%3A%2F%2Fwww.example.com%2Fsome_img.jpg%27] with the link of the image that I want to display
This approach displays the image in full size in Facebook, however the problem is that it doesn't allow adding any text quote with the image, any use of quote or description query parameters seems to be ignored by Facebook
So my question is there a way to combine the 2 methods such that the image gets displayed with full size along with a custom text quote?

flutter android launch_background.xml file

i need an example of launch_background.xml file in android folder that contains and image and (text)...basically my main problem is that i can't place text in this splash screen..so to be specific...i want to achieve splash screen that contains and image and under it there is some text...
i achieved the image preview with bitmap tag inside of an item tag
but no Textview tag can be placed inside layer-list tag :( (not showing)
i know that i can make the text as an svg file and place it in item tag..but i want to do it with TextView tag...so i can control it
any help would be much appreciated...thanks in advance.
Ok to give a solution to my own problem... at first I didn't like to place my text inside a separate .png file for the purpose of reducing the apk file size. I placed it inside an svg file for the size purpose but I couldn't place that text in svg beneath the centered image... unless by hardcoding values with the attributes: "android:gravity=center" "android:top=200dp" ...and I don't feel comfortable with hardcoded values... so I searched and found this package "flutter_native_splash" Flutter Native Splash.
Placed the desired image and beneath it the desired text and the package generated the appropriate image densities for the various screens containing the image and text...

using itextsharp add image under text but over other images that have been placed

Imagine a pdf with text and a application that test images over the text.
In every test pdf is saved and the next test using same pdf.
The first time you add image under text you can see the results, next time you will try you add image under is not appear because first image cover it.
So...exists something GetBetween or can i choose the layer that i want?
If i use GetUnderContent only first image appears and all others are hide.
If i use GetOverContent then the text is covered by image.

wrapping text in RTL language using LWUIT

I'm developing a j2me application using Netbeans IDE and LWUIT library. I'm using Persian (RTL) language in my application using localization and showing them with bitmap font.
In order to wrap multiple line texts in a Form as Labels or in TextAreas. My problem is that they are breaking to multiple lines when they reach to the middle of screen width i.e they don’t fill one line till the end of the screen width and go to the next line. I set
maxwidth=Display.getInstance().getDisplayWidth());
Would you help me with this issue?
try using YourComponent.setPreferredW(Display.getInstance().getDisplayWidth());
When creating the text area set the columns number to a large value (100 or so).
In some languages like Hindi(India) where unicodes are used even though they are LTR , for that we can do TextArea.setUseStringWidth(true);
This will wrap the text according to the font glyphs of that language.